Skip to content

Latest commit

 

History

History
19 lines (16 loc) · 427 Bytes

100.md

File metadata and controls

19 lines (16 loc) · 427 Bytes

解法一

  • 28ms
  • 71%
# Definition for a binary tree node.
# class TreeNode:
#     def __init__(self, x):
#         self.val = x
#         self.left = None
#         self.right = None

class Solution:
    def isSameTree(self, p: TreeNode, q: TreeNode) -> bool:
        if p and q:
            return p.val==q.val and self.isSameTree(p.left, q.left) and self.isSameTree(p.right, q.right)
        return p is q