Implement `invertTree(root)` returning a new tree that is the mirror image (left and right swapped at every node).
+ 1 hidden test run on Submit.
Recursively swapping left and right children mirrors the tree. O(n).
Run your code to see results.