1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-01-10 18:48:13 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee
leetcode-problemset/leetcode-cn/problem (Chinese)/文件组合 [he-wei-sde-lian-xu-zheng-shu-xu-lie-lcof].html
2023-12-09 18:53:53 +08:00

37 lines
1.2 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<p>待传输文件被切分成多个部分,按照原排列顺序,每部分文件编号均为一个 <strong>正整数</strong>(至少含有两个文件)。传输要求为:连续文件编号总和为接收方指定数字 <code>target</code> 的所有文件。请返回所有符合该要求的文件传输组合列表。</p>
<p><strong>注意</strong>,返回时需遵循以下规则:</p>
<ul>
<li>每种组合按照文件编号 <strong>升序</strong> 排列;</li>
<li>不同组合按照第一个文件编号 <strong>升序</strong> 排列。</li>
</ul>
<p>&nbsp;</p>
<p><strong>示例 1</strong></p>
<pre>
<strong>输入:</strong>target = 12
<strong>输出:</strong>[[3, 4, 5]]
<strong>解释:</strong>在上述示例中,存在一个连续正整数序列的和为 12为 [3, 4, 5]。
</pre>
<p><strong>示例 2</strong></p>
<pre>
<strong>输入:</strong>target = 18
<strong>输出:</strong>[[3,4,5,6],[5,6,7]]
<strong>解释:</strong>在上述示例中,存在两个连续正整数序列的和分别为 18分别为 [3, 4, 5, 6] 和 [5, 6, 7]。
</pre>
<p>&nbsp;</p>
<p><b>提示:</b></p>
<ul>
<li><code>1 &lt;= target &lt;= 10^5</code></li>
</ul>
<p>&nbsp;</p>