1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-10-13 09:25:15 +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

@@ -2,13 +2,14 @@
<p>返回的长度需要从小到大排列。</p>
<p><strong>示例 1</strong></p>
<p><strong>示例 1</strong></p>
<pre><code><strong>输入:</strong>
<pre>
<code><strong>输入:</strong>
shorter = 1
longer = 2
k = 3
<strong>输出:</strong> [3,4,5,6]
<strong>输出:</strong>[3,4,5,6]
<strong>解释:</strong>
可以使用 3 次 shorter得到结果 3使用 2 次 shorter 和 1 次 longer得到结果 4 。以此类推,得到最终结果。</code></pre>