Skip to content

Latest commit

 

History

History
27 lines (25 loc) · 616 Bytes

112.md

File metadata and controls

27 lines (25 loc) · 616 Bytes

112. Path Sum

Solution 1

/**
 * Definition for a binary tree node.
 * struct TreeNode {
 *     int val;
 *     TreeNode *left;
 *     TreeNode *right;
 *     TreeNode(int x) : val(x), left(NULL), right(NULL) {}
 * };
 */
class Solution {
public:
    bool hasPathSum(TreeNode* root, int sum) {
        if (root == NULL)
            return false;
        if (root->left == NULL && root->right == NULL)
            return root->val == sum;
        bool ans1 = hasPathSum(root->left, sum - root->val);
        bool ans2 = hasPathSum(root->right, sum - root->val);
        return ans1 || ans2;
    }
};