mirror of
https://gitee.com/coder-xiaomo/leetcode-problemset
synced 2025-09-10 18:01:41 +08:00
存量题库数据更新
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
<p>给你一个 <strong>无重复元素</strong> 的整数数组 <code>candidates</code> 和一个目标整数 <code>target</code> ,找出 <code>candidates</code> 中可以使数字和为目标数 <code>target</code> 的 <em>所有 </em><strong>不同组合</strong> ,并以列表形式返回。你可以按 <strong>任意顺序</strong> 返回这些组合。</p>
|
||||
<p>给你一个 <strong>无重复元素</strong> 的整数数组 <code>candidates</code> 和一个目标整数 <code>target</code> ,找出 <code>candidates</code> 中可以使数字和为目标数 <code>target</code> 的 所有<em> </em><strong>不同组合</strong> ,并以列表形式返回。你可以按 <strong>任意顺序</strong> 返回这些组合。</p>
|
||||
|
||||
<p><code>candidates</code> 中的 <strong>同一个</strong> 数字可以 <strong>无限制重复被选取</strong> 。如果至少一个数字的被选数量不同,则两种组合是不同的。 </p>
|
||||
|
||||
@@ -35,7 +35,7 @@
|
||||
|
||||
<ul>
|
||||
<li><code>1 <= candidates.length <= 30</code></li>
|
||||
<li><code>1 <= candidates[i] <= 200</code></li>
|
||||
<li><code>candidate</code> 中的每个元素都 <strong>互不相同</strong></li>
|
||||
<li><code>1 <= target <= 500</code></li>
|
||||
<li><code>2 <= candidates[i] <= 40</code></li>
|
||||
<li><code>candidates</code> 的所有元素 <strong>互不相同</strong></li>
|
||||
<li><code>1 <= target <= 40</code></li>
|
||||
</ul>
|
||||
|
Reference in New Issue
Block a user