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
Copy file name to clipboardExpand all lines: 1-js/06-advanced-functions/01-recursion/05-output-single-linked-list-reverse/solution.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -37,7 +37,7 @@ The loop variant is also a little bit more complicated then the direct output.
37
37
38
38
There is no way to get the last value in our `list`. We also can't "go back".
39
39
40
-
So what we can do is to first go through the items in the direct order and rememeber them in an array, and then output what we remembered in the reverse order:
40
+
So what we can do is to first go through the items in the direct order and remember them in an array, and then output what we remembered in the reverse order:
0 commit comments