98. Validate Binary Search Tree
Medium
Input: root = [2,1,3]
Output: trueInput: root = [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.Solution 1 : Without Any Space
Solution 2 : With Space
Last updated

