Implement `bstMax(root)` returning the largest value in a non-empty BST.
+ 1 hidden test run on Submit.
The largest value in a BST is the rightmost node, found in O(h).
Run your code to see results.