leetcode/include/s0098_validate_binary_searc...

12 lines
189 B
C++
Raw Normal View History

2023-01-31 07:30:31 +00:00
#ifndef S0098_VALIDATE_BINARY_SEARCH_TREE_HPP
#define S0098_VALIDATE_BINARY_SEARCH_TREE_HPP
#include "structures.hpp"
class S0098 {
public:
bool isValidBST(TreeNode* root);
};
#endif