83 Remove Duplicates from Sorted List
Given a sorted linked list, delete all duplicates such that each element appear onlyonce.
For example,
Given1->1->2
, return1->2
.
Given1->1->2->3->3
, return1->2->3
.
Complexity: O(n) time, O(1) space
The Idea: Iterate through the list of elements, and map each pointer to skip past the same consecutive list of elements.
Last updated