#437 - Path Sum III
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).
| Input | Output |
|---|---|
root = [10,5,-3,3,2,null,11,3,-2,null,1], targetSum = 8 | 3 |
root = [5,4,8,11,null,13,4,7,2,null,null,5,1], targetSum = 22 | 3 |