Problem of the Day
A new programming or logic puzzle every Mon-Fri

Linked List Reverse

Welcome to another fantastic Monday!

Today's challenge is to print out the data of a linked list in reverse order. So if the list looked like 1->2->3. The program would print out 3,2,1. Can you solve this in linear time?

Permalink: http://problemotd.com/problem/linked-list-reverse/

Comments:

Content curated by @MaxBurstein