You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if root.val == sum and root.left == None and root.right == None:
return result + [current + [root.val]]
return self.pathSumRecur(result, current + [root.val], root.left, sum - root.val) + self.pathSumRecur(result, current + [root.val], root.right, sum - root.val)