Skip to content

Instantly share code, notes, and snippets.

View DaniWS's full-sized avatar
🎯
Focusing

DaniWestSide DaniWS

🎯
Focusing
View GitHub Profile
@dryear
dryear / reverse-linked-list.java
Created October 15, 2016 21:55
LeetCode 206. Reverse Linked List
/**
* https://leetcode.com/problems/reverse-linked-list/
*
* O(n) runtime, O(1) space
*
* this question can be solved by using an iteration method or a recursion method
*/
/**
* Definition for singly-linked list.