83.Remove-Duplicates-from-Sorted-List
83. Remove Duplicates from Sorted List
题目地址
https://leetcode.com/problems/remove-duplicates-from-sorted-list/
https://www.lintcode.com/problem/remove-duplicates-from-sorted-list/description
题目描述
Given a sorted linked list, delete all duplicates such that each element appear only once.
Example 1:
Input: 1->1->2
Output: 1->2
Example 2:
Input: 1->1->2->3->3
Output: 1->2->3代码
Approach 1: Straight-Forward Approach
Last updated
Was this helpful?