Mental Model
We want to check if there is a path from the top of the tree to any bottom leaf where the numbers add up to a target sum.
Analogy: Imagine walking from the entrance of a maze to an exit, adding numbers on the path. We want to see if any path adds up exactly to a certain number.
5
/ \
4 8
/ / \
11 13 4
/ \ \
7 2 1