0226. Invert Binary Tree
https://leetcode.com/problems/invert-binary-tree
Description
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
ac
Last updated