Skip to content

Commit 26808cc

Browse files
author
Joseph Luce
authored
Update 113_path_sum_II.md
1 parent 9f24a59 commit 26808cc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

leetcode/medium/113_path_sum_II.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
- N = Number of nodes in tree
77

88
There are a few things that need to be added outside of a normal traversal of a binary tree.
9-
Outside of these things, everything else is a post order traversal.
9+
Outside of these things, everything else is a pre-order traversal (node -> left -> right).
1010

1111
1. Keep track of the sum as we traverse.
1212
2. Have a result we can modify as we traverse.

0 commit comments

Comments
 (0)