12 lines
189 B
C++
12 lines
189 B
C++
|
#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
|