Created
May 3, 2022 22:18
-
-
Save arjunsk/dd6a4a6b37be52f500f27d2609402509 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
use std::rc::Rc; | |
use std::cell::RefCell; | |
impl Solution { | |
pub fn has_path_sum(root: Option<Rc<RefCell<TreeNode>>>, target_sum: i32) -> bool { | |
if let Some(curr_node) = root { | |
let curr_node = curr_node.borrow(); | |
if curr_node.left.is_none() && curr_node.right.is_none() && curr_node.val == target_sum { | |
return true | |
} | |
return Self::has_path_sum(curr_node.left.clone(), target_sum - curr_node.val) || | |
Self::has_path_sum(curr_node.right.clone(), target_sum - curr_node.val) | |
} | |
return false | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment