Invert Binary Tree
Given a binary tree, invert it and return the new value. You may invert it in-place.
To "invert" a binary tree, switch the left subtree and the right subtree, and invert them both. Inverting an empty tree does nothing.
tree = <See explanation>
<See explanation>
Original tree:

Inverted tree:
