[LeetCode] 112. Path Sum
![[LeetCode] 112. Path Sum](https://img1.daumcdn.net/thumb/R750x0/?scode=mtistory2&fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdna%2FcfD3tU%2FbtrNPidUhWa%2FAAAAAAAAAAAAAAAAAAAAAEYyBrJH_UTM4pHyxl_BkWMDLyRh3i9UeSEmjB0jkCL1%2Fimg.jpg%3Fcredential%3DyqXZFxpELC7KVnFOS48ylbz2pIh7yKj8%26expires%3D1753973999%26allow_ip%3D%26allow_referer%3D%26signature%3D7piLhCTU9ktDWoe2u33cnx16aM4%253D)
[LeetCode] 112. Path Sum
112. Path Sum Easy 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 the values along the path equals targetSum. A leaf is a node with no children. Example 1: Input: root = [5,4,8,11,null,13,4,7,2,null,null,null,1], targetSum = 22 Output: true Explanation: The root-to-leaf path with the target sum is shown. Example 2..