98. Validate Binary Search Tree
problem description
2
/ \
1 3
Input: [2,1,3]
Output: true 5
/ \
1 4
/ \
3 6
Input: [5,1,4,null,null,3,6]
Output: false
Explanation: The root node's value is 5 but its right child's value is 4.algorithm thought
code
algorithm analysis
Last updated