Validate Binary Search Tree(iterative,dfs)
Input:
2
/ \
1 3
Output:
true 5
/ \
1 4
/ \
3 6
Output:
false
Explanation:
The input is: [5,1,4,null,null,3,6]. The root node's value
is 5 but its right child's value is 4.Last updated