Given a binary tree and a sum, find all root-to-leaf paths where each path’s sum equals the given sum.
Note
A leaf is a node with no children.
Example
Given the below binary tree and sum = 22,
1 | 5 |
Return:
1 | [ |
Code
1 | public class TreeNode { |
1 | public List<List<Integer>> pathSum(TreeNode root, int sum) { |