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 745a0e5 commit aaf4ec3Copy full SHA for aaf4ec3
leetcode/easy/112_path_sum.md
@@ -33,7 +33,7 @@ class Solution:
33
- N = Number of nodes in tree
34
35
Similar to the recursive solution, but we need to store an additional current sum with the node in the stack.
36
-Since we will never need to go back up the tree once we have traverse down, there is no need to implement a global sum.
+Since we will never need to go back up the tree or revisit any nodes once we have traverse down, there is no need to implement a global sum.
37
38
```
39
class Solution:
0 commit comments