A BST node is `{ val, left, right }`. Implement `bstContains(root, target)` returning whether `target` exists, using the BST ordering.
+ 1 hidden test run on Submit.
The BST property means you branch one way each step, giving O(h) time (h is the height).
Run your code to see results.