feat(leetcode): 100.相同的树

100.相同的树

Signed-off-by: Ching <loooching@gmail.com>
This commit is contained in:
Ching 2022-01-27 20:16:38 +08:00
parent 6b4894c49f
commit 94285e5fa4

29
100.相同的树.py Normal file
View File

@ -0,0 +1,29 @@
#
# @lc app=leetcode.cn id=100 lang=python3
#
# [100] 相同的树
#
# @lc code=start
# 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
from utils import *
class Solution:
def isSameTree(self, p: TreeNode, q: TreeNode) -> bool:
if not p and not q:
return True
if not p or not q:
return False
if p.val != q.val:
return False
return self.isSameTree(p.left, q.left) and self.isSameTree(p.right, q.right)
# @lc code=end