0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Leetcode #404 Sum of Left Leaves

Posted at
func sumOfLeftLeaves(_ root: TreeNode?) -> Int {
    var sum = 0
    helper(root, &sum)
    return sum
}

private func helper(_ node: TreeNode?, _ sum: inout Int) {
    if node == nil {
        return
    }
    if node?.left != nil && node?.left?.left == nil && node?.left?.right == nil {
        sum += (node?.left?.val)!
    }
    helper(node?.left, &sum)
    helper(node?.right, &sum)
}
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?