Tree: Depth-First Search - Invert Binary Tree
Given the following code for inverting a binary tree, what is the value of the left child of the root node after calling
invertTree(root) on the tree below?
Tree structure before inversion:
2
/ \
1 3
