Validating a Binary Search Tree
Directions
Given a node, validate the binary search tree,
ensuring that every node's left hand child is
less than the parent node's value, and that
every node's right hand child is greater than
the parent
Use Node file.
Solutions