Copied From: https://leetcode.com/LHearen/

Here is the Link of below problems:

<aside> 💡 First Try On Your Own. Then Come To These Solutions

</aside>

  1. Remove Duplicates from Sorted List
  2. Remove Duplicates from Sorted List II
  3. Palindrome Linked List
  4. Rotate List
  5. Add Two Numbers
  6. Reverse Linked List II
  7. Linked List Cycle II
  8. Copy List with Random Pointer
  9. Reverse Nodes in k-Group

Description

One of the basic structures in algorithm which can be used to achieve lots of funny algorithms and problems.

Problems

There will be some of the most typical problems in this aspect, which I believe almost covers all the basic techniques that you need to solve a linked list problem.

Remove Duplicates from Sorted List

Given a sorted linked list, delete all duplicates such that each element appear only once.

For example, Given 1->1->2, return 1->2.Given 1->1->2->3->3, return 1->2->3.