Advertisement
Guest User

Untitled

a guest
Jan 24th, 2020
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. // Given two Binary Trees, write a function that returns true if two trees are mirror of each other, else false.
  2. // 1 | 1
  3. // 2 3 | 3 2
  4. // 4 5 N 6 | 6 N 5 4
  5. // N=null
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement