-
Notifications
You must be signed in to change notification settings - Fork 1
/
sum-of-left-leaves.py
45 lines (40 loc) · 1.03 KB
/
sum-of-left-leaves.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# -*- coding:utf-8 -*-
# Find the sum of all left leaves in a given binary tree.
#
# Example:
#
# 3
# / \
# 9 20
# / \
# 15 7
#
# There are two left leaves in the binary tree, with values 9 and 15 respectively. Return 24.
#
#
# 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 __init__(self):
self.r=0
def sumOfLeftLeaves(self, root):
"""
:type root: TreeNode
:rtype: int
"""
self.r=0
if root==None:
return 0
if root.left==None and root.right==None:
return 0
if root.left!=None and root.left.left==None and root.left.right==None:
self.r+=root.left.val
if root.left!=None:
self.r+=Solution.sumOfLeftLeaves(self, root.left)
if root.right!=None:
self.r+=Solution.sumOfLeftLeaves(self, root.right)
return self.r