mirror of
https://gitee.com/coder-xiaomo/leetcode-problemset
synced 2025-09-13 19:31:42 +08:00
add leetcode problem-cn part6
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
<p>给定一个已排序的链表的头<meta charset="UTF-8" /> <code>head</code> , <em>删除所有重复的元素,使每个元素只出现一次</em> 。返回 <em>已排序的链表</em> 。</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p><strong>示例 1:</strong></p>
|
||||
<img alt="" src="https://assets.leetcode.com/uploads/2021/01/04/list1.jpg" style="height: 160px; width: 200px;" />
|
||||
<pre>
|
||||
<strong>输入:</strong>head = [1,1,2]
|
||||
<strong>输出:</strong>[1,2]
|
||||
</pre>
|
||||
|
||||
<p><strong>示例 2:</strong></p>
|
||||
<img alt="" src="https://assets.leetcode.com/uploads/2021/01/04/list2.jpg" style="height: 123px; width: 300px;" />
|
||||
<pre>
|
||||
<strong>输入:</strong>head = [1,1,2,3,3]
|
||||
<strong>输出:</strong>[1,2,3]
|
||||
</pre>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p><strong>提示:</strong></p>
|
||||
|
||||
<ul>
|
||||
<li>链表中节点数目在范围 <code>[0, 300]</code> 内</li>
|
||||
<li><code>-100 <= Node.val <= 100</code></li>
|
||||
<li>题目数据保证链表已经按升序 <strong>排列</strong></li>
|
||||
</ul>
|
Reference in New Issue
Block a user