101. Symmetric Tree
Easy
Input: root = [1,2,2,3,4,4,3]
Output: trueInput: root = [1,2,2,null,3,null,3]
Output: falseRecursion
Iterative
Last updated
Input: root = [1,2,2,3,4,4,3]
Output: trueInput: root = [1,2,2,null,3,null,3]
Output: falseLast updated
# Definition for a binary tree node.
# class TreeNode:
# def __init__(self, val=0, left=None, right=None):
# self.val = val
# self.left = left
# self.right = right
class Solution:
def isSymmetric(self, root: Optional[TreeNode]) -> bool:
if root is None:
return True
def recursion(left, right):
if left is None and right is None:
return True
elif left is None or right is None:
return False
elif left.val != right.val:
return False
return recursion(left.right, right.left) and recursion(left.left, right.right)
return recursion(root.left, root.right)
# Definition for a binary tree node.
# class TreeNode:
# def __init__(self, val=0, left=None, right=None):
# self.val = val
# self.left = left
# self.right = right
class Solution:
def isSymmetric(self, root: Optional[TreeNode]) -> bool:
# .
if root is None:
return True
q = [[root.left, root.right]]
while q:
left, right = q.pop(0)
if left is None and right is None:
continue
elif left is None or right is None:
return False
elif left.val != right.val:
return False
else:
q.append([left.right, right.left])
q.append([left.left, right.right])
return True