Skip to content

Commit 2620abd

Browse files
committed
Update LinkedList reference in readme.md
1 parent ee75f9a commit 2620abd

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

coding_solutions/DataStructure_related/LinkedList/Readme.md

+4
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,9 @@
33
| :----: | :-----------------------------: | :----: |
44
| 1 | [Delete Node in a Linked List](https://leetcode.com/problems/delete-node-in-a-linked-list/)| [python3](https://github.com/sushant097/Data-Structure-Algorithms-Collections-Python/blob/master/coding_solutions/DataStructure_related/LinkedList/1_Delete_a_node_LL.py) |
55
| 2 | [Remove Nth Node From End of List](https://leetcode.com/problems/remove-nth-node-from-end-of-list/)| [python3](https://github.com/sushant097/Data-Structure-Algorithms-Collections-Python/blob/master/coding_solutions/DataStructure_related/LinkedList/2_Delete_a_nth_node_LL.py) |
6+
| 3 | [Reverse a Linked List](https://leetcode.com/problems/reverse-linked-list/)| [python3](https://github.com/sushant097/Data-Structure-Algorithms-Collections-Python/blob/master/coding_solutions/DataStructure_related/LinkedList/4_Reverse_LinkedList.py) |
7+
| 4 | [Merge two sorted list](https://leetcode.com/problems/merge-two-sorted-lists/)| [python3](https://github.com/sushant097/Data-Structure-Algorithms-Collections-Python/blob/master/coding_solutions/DataStructure_related/LinkedList/3_MergeTwoSortedList.py) |
8+
| 5 | [LinkedList a cycle](https://leetcode.com/problems/linked-list-cycle/)| [python3](https://github.com/sushant097/Data-Structure-Algorithms-Collections-Python/blob/master/coding_solutions/DataStructure_related/LinkedList/6_LinkedList_Cycle.py) |
9+
| 6 | [Palindrome LinkedList](https://leetcode.com/problems/palindrome-linked-list/)| [python3](https://github.com/sushant097/Data-Structure-Algorithms-Collections-Python/blob/master/coding_solutions/DataStructure_related/LinkedList/5_Palindrome_LinkedList.py) |
610

711

0 commit comments

Comments
 (0)