Implement `isValidBST(root)` returning whether the tree satisfies the BST property (every left descendant is smaller and every right descendant is larger).
+ 1 hidden test run on Submit.
Carrying min/max bounds down the recursion validates the full ordering in O(n).
Run your code to see results.