LinkedList
| Id | Problem | Level | 0 / 16 | ||
|---|---|---|---|---|---|
| L1 | Delete N Nodes After M Nodes of a Linked List | Easy | |||
| L1 | Delete N Nodes After M Nodes of a Linked List : ---- Input : ----- Output : | ||||
| L2 | Middle of the Linked List | Easy | |||
| L2 | Middle of the Linked List : ---- Input : 1-2-3-4-5 ----- Output : 3 | ||||
| L3 | Delete Node in a Linked List | Easy | |||
| L3 | Delete Node in a Linked List : ---- Input : 1-2-3-4 3 ----- Output : 1-2-4 | ||||
| L4 | Reverse Linked List | Easy | |||
| L4 | Reverse Linked List : ---- Input : 1-2-3-4 ----- Output : 4-3-2-1 | ||||
| L5 | Merge Two Sorted Lists | Easy | |||
| L5 | Merge Two Sorted Lists : ---- Input : 1-2-3 / 2-4-5 ----- Output : 1-2-2-3-4-5 | ||||
| L6 | Remove Duplicates from Sorted List | Easy | |||
| L6 | Remove Duplicates from Sorted List : ---- Input : 1-2-3-1-3 ----- Output : 1-2-3 | ||||
| L7 | Linked List Cycle | Easy | |||
| L7 | Linked List Cycle : ---- Input : Detect Cycle ----- Output : True / False | ||||
| L8 | Intersection of Two Linked Lists | Easy | |||
| L8 | Intersection of Two Linked Lists : ---- Input : ----- Output : | ||||
| L9 | Palindrome Linked List | Easy | |||
| L9 | Palindrome Linked List : ---- Input : 1-2-2-1 ----- Output : True | ||||
| L10 | Remove Linked List Elements | Easy | |||
| L10 | Remove Linked List Elements : ---- Input : ----- Output : | ||||
| L11 | Convert Binary Search Tree to Sorted Doubly Linked List | Easy | |||
| L11 | Convert Binary Search Tree to Sorted Doubly Linked List : ---- Input : ----- Output : | ||||
| L12 | Plus One Linked List | Medium | |||
| L12 | Plus One Linked List : ---- Input : ----- Output : | ||||
| L13 | Next Greater Node In Linked List | Medium | |||
| L13 | Next Greater Node In Linked List : ---- Input : 5-3-4-2-1 ----- Output : 5 4 4 2 1 | ||||
| L14 | Linked List Components | Medium | |||
| L14 | Linked List Components : ---- Input : ----- Output : | ||||
| L15 | Odd Even Linked List | Medium | |||
| L15 | Odd Even Linked List : ---- Input : ----- Output : | ||||
| L16 | Add Two Numbers II | Medium | |||
| L16 | Add Two Numbers II : ---- Input : ----- Output : | ||||