shlogg · Early preview
Hariprasath @hashiramasenjuhari

Reversing A Linked List In 60 Characters

Reversing a linked list by swapping `next` pointers. Iterate through the list, saving `current.next` in `next`, then swap `current.next` with `prev`. Repeat until `current.next` is null.