469.Identical Binary Tree
1.Description(Easy)
Check if two binary trees are identical. Identical means the two binary trees have the same structure and every identical position has the same value.
Example
are identical.
are not identical.
2.Code
Last updated