You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if (not root1 and root2) or (root1 and not root2):
return False
if not root1 and not root2:
return True
if root1.val == root2.val:
return (self.flipEquiv(root1.left,root2.left) and self.flipEquiv(root1.right,root2.right)) or (self.flipEquiv(root1.right,root2.left) and self.flipEquiv(root1.left,root2.right))