We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1af5bc9 commit ac1d570Copy full SHA for ac1d570
tree/129_sumNumbers.py
@@ -22,5 +22,3 @@ def dfs(root, value):
22
return dfs(root.left, value) + dfs(root.right, value)
23
24
return dfs(root, 0)
25
-
26
- return dfs(root, 0)
0 commit comments