Skip to content

Latest commit

 

History

History
14 lines (7 loc) · 145 Bytes

File metadata and controls

14 lines (7 loc) · 145 Bytes

Problem 206: Reverse Linked List

Difficulty: Easy

Problem

Reverse a singly linked list.

Example

1->2->3

returns 3->2->1