Challenge 5: Reverse a Linked List
Can you implement a program which could reverse a linked list? Let's find out!
We'll cover the following...
Problem statement
You have to write the Reverse
function, which starts iterating from the head and swaps nodes of the list, so that in the end, it returns a string that ...