1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-10-13 01:15:14 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee
This commit is contained in:
2025-09-29 14:43:44 +08:00
parent 2862a227c4
commit 13f2098086
4409 changed files with 168933 additions and 166256 deletions

View File

@@ -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>&nbsp;</p>