226. Invert Binary Tree
Easy
Given the root
of a binary tree, invert the tree, and return its root.
Example 1:
Example 2:
Example 3:
Constraints:
The number of nodes in the tree is in the range
[0, 100]
.-100 <= Node.val <= 100
解題
Last updated