g0401_0500.s0437_path_sum_iii.Solution.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of leetcode-in-kotlin Show documentation
Show all versions of leetcode-in-kotlin Show documentation
Kotlin-based LeetCode algorithm problem solutions, regularly updated
package g0401_0500.s0437_path_sum_iii
// #Medium #Top_100_Liked_Questions #Depth_First_Search #Tree #Binary_Tree #Level_2_Day_7_Tree
// #2022_09_11_Time_403_ms_(54.12%)_Space_41.7_MB_(62.35%)
import com_github_leetcode.TreeNode
/*
* Example:
* var ti = TreeNode(5)
* var v = ti.`val`
* Definition for a binary tree node.
* class TreeNode(var `val`: Int) {
* var left: TreeNode? = null
* var right: TreeNode? = null
* }
*/
@Suppress("NAME_SHADOWING")
class Solution {
private var count = 0
fun pathSum(root: TreeNode?, targetSum: Int): Int {
if (root == null) {
return 0
}
helper(root, targetSum, 0)
pathSum(root.left, targetSum)
pathSum(root.right, targetSum)
return count
}
fun helper(node: TreeNode, targetSum: Int, currSum: Long) {
var currSum = currSum
currSum += node.`val`
if (targetSum.toLong() == currSum) {
count++
}
if (node.left != null) {
helper(node.left!!, targetSum, currSum)
}
if (node.right != null) {
helper(node.right!!, targetSum, currSum)
}
}
}