Tree: Depth-First Search - Path Sum III (Any Path)
Consider two approaches to solve Path Sum III: (1) Brute force checking all paths from every node, and (2) Prefix sum DFS with hash map. When is the brute force approach preferable over prefix sum DFS?
