Skip to content

Latest commit

 

History

History
84 lines (75 loc) · 4.55 KB

linked-list-problems.md

File metadata and controls

84 lines (75 loc) · 4.55 KB

Basic

Problem Difficulty
707. Design Linked List Medium

Traversal

Problem Difficulty

Remove

Problem Difficulty
203. Remove Linked List Elements Easy
237. Delete Node in a Linked List Medium

Insert

Problem Difficulty

Reverse

Problem Difficulty
206. Reverse Linked List Easy
92. Reverse Linked List II Medium

Two Pointers

Problem Difficulty
19. Remove Nth Node From End of List Medium

Middle

Problem Difficulty
876. Middle of the Linked List Easy
2095. Delete the Middle Node of a Linked List Medium
234. Palindrome Linked List Easy

Merge

Problem Difficulty
21. Merge Two Sorted Lists Easy
2. Add Two Numbers Medium

Other

Problem Difficulty
1472. Design Browser History Medium
138. Copy List with Random Pointer Medium