Given the root of a binary tree, invert the tree, and return its root.
Inverting a binary tree means swapping the left and right children of every node in the tree, creating a mirror image of the original structure.
[0, 100]-100 <= Node.val <= 100root = [4,2,7,1,3,6,9][4,7,2,9,6,3,1]root = [2,1,3][2,3,1]root = [][]