#ifndef S0110_BALANCED_BINARY_TREE_HPP #define S0110_BALANCED_BINARY_TREE_HPP #include #include "structures.hpp" using namespace std; class S0110 { public: bool isBalanced(TreeNode* root); }; #endif