en.javascript.info/1-js/06-more-functions/01-recursion/05-output-single-linked-list-reverse/task.md
Ilya Kantor 9ad9063d00 up
2016-11-28 21:35:42 +03:00

240 B

importance: 5


Output a single-linked list in the reverse order

Output a single-linked list from the previous task info:task/output-single-linked-list in the reverse order.

Make two solutions: using a loop and using a recursion.