Reverse Linked List (#206)

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

Company Tags: Amazon, Microsoft

Core Concept: Linked List, Iterative/Recursive Approach

Solve on LeetCode