83. Remove Duplicates from Sorted List
Algorithms: while traverse the link, delete cur if cur == cur.next.
Given a sorted linked list, delete all duplicates such that each element appear only once.
Example 1:
1 | Input: 1->1->2 |
Example 2:
1 | Input: 1->1->2->3->3 |
Soulution:
1 | # Definition for singly-linked list. |