leetcode——100.相同的树

leetcode——100.相同的树,第1张

概述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:
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 总结

以上是内存溢出为你收集整理的leetcode——100.相同的树全部内容,希望文章能够帮你解决leetcode——100.相同的树所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1191144.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-03
下一篇 2022-06-03

发表评论

登录后才能评论

评论列表(0条)

保存