#LinkedList
| # | Problem | Solution | Difficulty | Note |
|---|---|---|---|---|
| 1 | Linked List Insertion | Solution | Basic | |
| 2 | Insert in Middle of Linked List | Solution | Basic | |
| 3 | Count nodes of linked list | Solution | Basic | |
| 4 | Linked List Length Even or Odd? | Solution | Basic | |
| 5 | Print Linked List elements | Solution | Basic | |
| 6 | Node at a given index in linked list | Solution | Basic | |
| 7 | Find n/k th node in Linked list | Solution | Basic | |
| 8 | Find the Sum of Last N nodes of the Linked List | Solution | Basic | |
| 9 | Identical Linked Lists | Solution | Basic | |
| 10 | Occurence of an integer in a Linked List | Solution | Basic | |
| 11 | Nth node from end of linked list | Solution | Basic | |
| 12 | Delete a Node in Single Linked List | Solution | Basic | |
| 13 | Compare two linked lists | Solution | Basic | |
| 14 | Finding middle element in a linked list | Solution | Basic | |
| 15 | Detect Loop in linked list | - | Basic | Floyd’s Cycle-Finding Algorithm |
| 16 | Find length of Loop | - | Basic | Floyd’s Cycle-Finding Algorithm |