标签:数字 += tree nod res python3 用户 node style
很简单,,但是自己还是没写出来。。。。
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
标签:数字 += tree nod res python3 用户 node style
原文地址:https://www.cnblogs.com/taoyuxin/p/11914585.html