mirror of
https://gitee.com/coder-xiaomo/leetcode-problemset
synced 2025-10-13 01:15:14 +08:00
update
This commit is contained in:
@@ -12,6 +12,7 @@
|
||||
<pre>
|
||||
<strong>输入:</strong>nums = [5,2,3,1]
|
||||
<strong>输出:</strong>[1,2,3,5]
|
||||
<strong>解释:</strong>数组排序后,某些数字的位置没有改变(例如,2 和 3),而其他数字的位置发生了改变(例如,1 和 5)。
|
||||
</pre>
|
||||
|
||||
<p><strong>示例 2:</strong></p>
|
||||
@@ -19,6 +20,7 @@
|
||||
<pre>
|
||||
<strong>输入:</strong>nums = [5,1,1,2,0,0]
|
||||
<strong>输出:</strong>[0,0,1,1,2,5]
|
||||
<strong>解释:</strong>请注意,nums 的值不一定唯一。
|
||||
</pre>
|
||||
|
||||
<p> </p>
|
||||
|
Reference in New Issue
Block a user