141. Linked List Cycle


Floyd's Cycle Finding Algorithm with slow and fast pointers
Read more ⟶

2. Add Two Numbers


calculate sum in column like in sum with in memory value
Read more ⟶

206. Reverse Linked List


traverse and relink current.next -> prev
Read more ⟶

23. Merge k Sorted Lists


group by two lists and merge using problem 21
Read more ⟶