Back to Practice Dashboard
DSA SectionEasy

Reverse Linked List

Learn how to solve the 'Reverse Linked List' problem. This detailed resource details brute force and optimized approaches.

Problem Statement

Easy

Given the head of a singly linked list, reverse the list, and return the reversed list.

Constraints
  • The number of nodes in the list is the range [0, 5000].
  • -5000 <= Node.val <= 5000

Examples

Example 1
Input
head = [1,2,3,4,5]
Output
[5,4,3,2,1]
Example 2
Input
head = [1,2]
Output
[2,1]
Need a Hint?
Analyze the input constraints. Try sorting first (O(n log n)) or using a hash map/set to track seen elements in O(n) time.
Edge Cases to Watch
  • Empty list or null input variables
  • Single item lists/arrays
  • Extremely large input bounds causing integer or stack overflow

Ready to Solve?

Open the problem in PyRun's browser-based Python editor. Your code runs fully offline — no server required.

Open in Editor