1. 程式人生 > >leetcode-404. 左葉子之和

leetcode-404. 左葉子之和

在這裡插入圖片描述

class Solution(object):
    def sumOfLeftLeaves(self, root):
        """
        :type root: TreeNode
        :rtype: int
        """
        if not root:
            return 0
        if root.left and not root.left.left and not root.left.right:
            return root.left.val + self.sumOfLeftLeaves(
root.right) return self.sumOfLeftLeaves(root.left)+self.sumOfLeftLeaves(root.right)