leetcode——129. 求根到叶子节点数字之和
Posted 欣姐姐
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode——129. 求根到叶子节点数字之和相关的知识,希望对你有一定的参考价值。
很简单,,但是自己还是没写出来。。。。
class Solution: def sumNumbers(self, root: TreeNode) -> int: self.res=0 def helper(root,tmp): if not root:return if not root.left and not root.right: self.res+=int(tmp+str(root.val)) return helper(root.left,tmp+str(root.val)) helper(root.right,tmp+str(root.val)) helper(root,‘‘) return self.res
执行用时 :40 ms, 在所有 python3 提交中击败了90.03%的用户
内存消耗 :13.8 MB, 在所有 python3 提交中击败了5.26%的用户
——2019.11.22
以上是关于leetcode——129. 求根到叶子节点数字之和的主要内容,如果未能解决你的问题,请参考以下文章
LeetCode 129. 求根到叶子节点数字之和(Sum Root to Leaf Numbers)