Skip to content

Latest commit

 

History

History

98

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

Solution

  • Dfs the binary search tree
    • Check left subtree is a binary search tree
    • Check right subtree is a binary search tree
    • Check max value of left subtree is less than root
    • Check min value of right subtree is right than root