206. Reverse Linked List
Given the head of a singly linked list, reverse the list, and return the reversed list.
Thoughts
Pretty easy, simple as iterating through the list and building the list in reverse order
Solution
/**
* Definition for singly-linked list.
* public c...
lc.sweezy.io1 min read