Ultimate DSA Interview Prep: 5/12 Linked Lists
13 min readAug 29, 2024
A curated list of LeetCode problems covering key concepts and techniques to help you prepare for your next DSA interview.
- Arrays & Strings
- Hashmaps & Sets
- 2 Pointers
- Stacks
- Linked List
- Binary Search
- Sliding Window
- Trees
- Heaps
- Recursive Backtracking
- Graphs
- Dynamic Programming
Linked Lists
Easy:
- https://leetcode.com/problems/remove-duplicates-from-sorted-list/
- https://leetcode.com/problems/reverse-linked-list/description/
- https://leetcode.com/problems/merge-two-sorted-lists/description/
- https://leetcode.com/problems/linked-list-cycle/description/
- https://leetcode.com/problems/middle-of-the-linked-list/description/
Medium:
6. https://leetcode.com/problems/remove-nth-node-from-end-of-list/description/
7. https://leetcode.com/problems/copy-list-with-random-pointer/description/