[LeetCode] Problem 83 - Remove Duplicates from Sorted List
Given a sorted linked list, delete all duplicates such that each element appear only once.
ExampleNo.1Input: 1->1->2
Output: 1->2
No.2Input:
...