226.Invert Binary Tree
Invert a binary tree.
1 | 4 |
to
1 | 4 |
####Recursive solution
1 | public class Solution { |
####Iterative Solution
1 | public class Solution { |
Invert a binary tree.
1 | 4 |
to
1 | 4 |
####Recursive solution
1 | public class Solution { |
####Iterative Solution
1 | public class Solution { |