113. Path Sum II
Input: root = [5,4,8,11,null,13,4,7,2,null,null,5,1], targetSum = 22
Output:
[[5,4,11,2],[5,8,4,5]]
Explanation:
There are two paths whose sum equals targetSum:
5 + 4 + 11 + 2 = 22
5 + 8 + 4 + 5 = 22Input: root = [1,2,3], targetSum = 5
Output:
[]Solution 1
Solution 2
Last updated

