码迷,mamicode.com
首页 > 编程语言 > 详细

【leetcode?python】 Sum of Left Leaves

时间:2016-10-12 19:58:11      阅读:305      评论:0      收藏:0      [点我收藏+]

标签:

#-*- coding: UTF-8 -*-
# Definition for a binary tree node.
# class TreeNode(object):
#     def __init__(self, x):
#         self.val = x
#         self.left = None
#         self.right = None

class Solution(object):
    
    def dfs(self,root,isLeft):
        
        if root==None:return 0
        if(root.left==None and root.right==None and isLeft==True):return root.val
        return self.dfs(root.left,True)+self.dfs(root.right,False)
    
    def sumOfLeftLeaves(self, root):
        return self.dfs(root,False)
       

【leetcode?python】 Sum of Left Leaves

标签:

原文地址:http://www.cnblogs.com/kwangeline/p/5953718.html

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