Implement `treeSum(root)` returning the sum of all node values (0 for an empty tree).
+ 1 hidden test run on Submit.
Each node contributes its value plus the sums of its subtrees. O(n).
Run your code to see results.