首页 > 其他 > 详细

LeetCode113. 路径总和 II

时间:2021-01-19 19:38:08      阅读:29      评论:0      收藏:0      [点我收藏+]

原题链接

 1 class Solution:
 2     def pathSum(self, root: TreeNode, sum: int) -> List[List[int]]:
 3         ans,tmp = [],[]
 4         def helper(root,sum):
 5             if not root:return
 6             tmp.append(root.val)
 7             sum -= root.val
 8             helper(root.left,sum)
 9             helper(root.right,sum)
10             if not root.left and not root.right:
11                 if 0 == sum:
12                     ans.append(tmp[::])
13             tmp.pop()
14         helper(root,sum)
15         return ans

 

LeetCode113. 路径总和 II

原文:https://www.cnblogs.com/lj95/p/14297264.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!