leetcode——100.相同的树
发布时间:2020-12-20 10:35:41 所属栏目:Python 来源:网络整理
导读:class Solution: def isSameTree(self,p,q) - bool: if not p and not q: return True elif p is not None and q is not None: if p.val== q.val: return self.isSameTree(p.left,q.left) and self.isSameTree(p.right,q.right) else : return False else :
class Solution: def isSameTree(self,p,q) -> bool: if not p and not q: return True elif p is not None and q is not None: if p.val==q.val: return self.isSameTree(p.left,q.left) and self.isSameTree(p.right,q.right) else: return False else: return False ?
执行用时 :40 ms,在所有?Python3?提交中击败了95.91%的用户
内存消耗 :13.8 MB,在所有?Python3?提交中击败了5.10%的用户
?
难过,我还是不知道它怎么输入的。。。。。
?
我现在好瞌睡。。。。
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?——2019.9.24
(编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |