Given a sorted linked list, delete all duplicates such that each element appear only once.
Example
No.1
Input: 1->1->2
Output: 1->2
No.2
Input: 1->1->2->3->3
Output: 1->2->3
Code
1 | public class ListNode { |
1 | public ListNode deleteDuplicates(ListNode head) { |