s0110
This commit is contained in:
15
include/s0110_balanced_binary_tree.hpp
Normal file
15
include/s0110_balanced_binary_tree.hpp
Normal file
@@ -0,0 +1,15 @@
|
||||
#ifndef S0110_BALANCED_BINARY_TREE_HPP
|
||||
#define S0110_BALANCED_BINARY_TREE_HPP
|
||||
|
||||
#include <algorithm>
|
||||
|
||||
#include "structures.hpp"
|
||||
|
||||
using namespace std;
|
||||
|
||||
class S0110 {
|
||||
public:
|
||||
bool isBalanced(TreeNode* root);
|
||||
};
|
||||
|
||||
#endif
|
Reference in New Issue
Block a user