Given the root of a binary tree and an integer targetSum, return true if the tree has a root-to-leaf path such that adding up all values along the path equals targetSum.
A leaf is a node with no children. Example: For tree and target 22, the path sums to 22. Constraints: up to nodes, values from to , target from to .