Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added Problem related to Linked List: #352 #373

Merged
merged 1 commit into from
Jun 17, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 36 additions & 0 deletions blog/2024-06-15-linked-list/linked-list-problems.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
---
slug: linked-list-problems
title: Linked List Problems
authors: [Anshika]
tags: ["30daysofcpp", "arrays", "practice-problems","leetcode","geeksforgeeks"]
---

- [Remove Linked List Elements](https://leetcode.com/problems/remove-linked-list-elements/description/)

- [Design HashMap](https://leetcode.com/problems/design-hashmap/description/)

- [Intersection of Two Linked Lists](https://leetcode.com/problems/intersection-of-two-linked-lists/description/)

- [Add Two Numbers](https://leetcode.com/problems/add-two-numbers/description/)

- [Remove Nth Node From End of List](https://leetcode.com/problems/remove-nth-node-from-end-of-list/description/)

- [Merge Two Sorted Lists](https://leetcode.com/problems/merge-two-sorted-lists/description/)

- [Merge k Sorted Lists](https://leetcode.com/problems/merge-k-sorted-lists/description/)

- [Swap Nodes in Pairs](https://leetcode.com/problems/swap-nodes-in-pairs/description/)

- [Remove Duplicates from Sorted List](https://leetcode.com/problems/remove-duplicates-from-sorted-list/description/)

- [Remove loop in Linked List](https://www.geeksforgeeks.org/problems/remove-loop-in-linked-list/1?page=1&category=Linked%20List&sortBy=submissions)

- [Detect Loop in linked list](https://www.geeksforgeeks.org/problems/detect-loop-in-linked-list/1?page=1&category=Linked%20List&sortBy=submissions)

- [Middle of a Linked List](https://www.geeksforgeeks.org/problems/finding-middle-element-in-a-linked-list/1?page=1&category=Linked%20List&sortBy=submissions)

- [Rotate a Linked List](https://www.geeksforgeeks.org/problems/rotate-a-linked-list/1?page=1&category=Linked%20List&sortBy=submissions)

- [Delete without head pointer](https://www.geeksforgeeks.org/problems/delete-without-head-pointer/1?page=1&category=Linked%20List&sortBy=submissions)

- [Linked List Insertion](https://www.geeksforgeeks.org/problems/linked-list-insertion-1587115620/1?page=1&category=Linked%20List&sortBy=submissions)