Given the root of a binary tree and an integer targetSum, return all root-to-leaf paths where each path's sum equals targetSum.
root
targetSum
Example: same tree as Path Sum I with targetSum = 22 → [[5,4,11,2]].
targetSum = 22
[[5,4,11,2]]