Skip to content

Commit 78996cd

Browse files
Create 1022.py
1 parent 81806ea commit 78996cd

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

1001-1500/1022.py

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Definition for a binary tree node.
2+
# class TreeNode:
3+
# def __init__(self, val=0, left=None, right=None):
4+
# self.val = val
5+
# self.left = left
6+
# self.right = right
7+
class Solution:
8+
def sumRootToLeaf(self, root: Optional[TreeNode]) -> int:
9+
def dfs(node,path):
10+
if not node:
11+
return 0
12+
path = (path<<1)+node.val
13+
if not node.left and not node.right:
14+
return path
15+
else:
16+
return dfs(node.left, path) + dfs(node.right, path)
17+
return dfs(root,0)

0 commit comments

Comments
 (0)