-
hi @Kavya-24
I would like to contribute by adding the implementation and explanation of a Doubly Linked List in the repository. This will include the basic operations such as insertion, deletion, …
-
-
### **Bug Reported on 20 November, 15:59 GMT +5:50 in**
Lab - Data Structures - 1
Experiment - Linked lists
**Type(s) of Issue -**
* Insufficient/Incorrect Instructions
Additional info- GIVEN QUESTI…
-
-
@mohammedwaris
- Can you refactor the `LinkedList` implementation providing separate methods/functions for additions/deletions/printing and include relevant tests also.
- Can you also refactor L…
-
# Contribution Guidelines for this question
- Languages available: C++, Java, Python
- Well Commented Code
- In the starting, add a brief explanation of the algorithm
- if possible, add time and…
-
I need to add some leetcode Problem
-
![linked_List](https://github.com/hnjog/hnjog.github.io/assets/43630972/0731813a-3aa4-43ee-886e-e41281c42e22)
-
Link to PR: #30
Link to challenge: [0005-linked-list.md](https://github.com/model-checking/verify-rust-std/blob/main/doc/src/challenges/0005-linked-list.md)
-
Given a singly linked list, delete middle of the linked list. For example, if given linked list is 1->2->3->4->5 then linked list should be modified to 1->2->4->5.
If there are even nodes, then there…