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