**Problem Statement:**
Given the required input arguments, write an efficient algorithm to solve the **Path Sum** problem. Implement the required logic as specified by standard definitions for this classic algorithmic challenge.
**Hint / Expected Approach:**
DFS subtract from target, check leaf
**Edge Cases to Consider:**
- (1) Negative target
- (2) Root is null
- (3) Internal node equals target but not leaf