码迷,mamicode.com
首页 > 其他好文 > 详细

力扣404. 左叶子之和

时间:2021-01-26 11:58:52      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:code   tco   col   lag   nod   elf   get   +=   flag   

原题链接

 1 class Solution:
 2     ans = 0
 3     def sumOfLeftLeaves(self, root: TreeNode) -> int:
 4         def dfs(root,flag):
 5             if not root:return
 6             if not root.left and not root.right and flag:
 7                 self.ans += root.val
 8             dfs(root.left, True)
 9             dfs(root.right, False)
10         dfs(root,False)
11         return self.ans
12         
13             

 

力扣404. 左叶子之和

标签:code   tco   col   lag   nod   elf   get   +=   flag   

原文地址:https://www.cnblogs.com/lj95/p/14321232.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!