Invert Binary Tree (#226)

Given the root of a binary tree, invert the tree, and return its root.

Company Tags: Google, Amazon

Core Concept: Tree, Recursion

Solve on LeetCode