Skip to content

#437 - Path Sum III

MediumBinary Tree - DFS
Open on LeetCode

Given the root of a binary tree and an integer targetSum, return the number of paths where the values along the path sum to targetSum. The path does not need to start at the root or end at a leaf, but it must go downwards (from parent to child).

InputOutput
root = [10,5,-3,3,2,null,11,3,-2,null,1], targetSum = 83
root = [5,4,8,11,null,13,4,7,2,null,null,5,1], targetSum = 223

Released under the MIT License.