mirror of
https://gitee.com/coder-xiaomo/leetcode-problemset
synced 2025-09-12 19:01:47 +08:00
批量更新数据
This commit is contained in:
@@ -4,11 +4,11 @@
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p><strong>示例 1:</strong></p>
|
||||
<p><strong>示例 1:</strong></p>
|
||||
|
||||
<pre>
|
||||
<strong>输入:</strong> candidates = <code>[10,1,2,7,6,1,5]</code>, target = <code>8</code>,
|
||||
<strong>输出:</strong>
|
||||
<strong>输入:</strong>candidates = [10,1,2,7,6,1,5], target = 8
|
||||
<strong>输出:</strong>
|
||||
[
|
||||
[1,1,6],
|
||||
[1,2,5],
|
||||
@@ -16,11 +16,11 @@
|
||||
[2,6]
|
||||
]</pre>
|
||||
|
||||
<p><strong>示例 2:</strong></p>
|
||||
<p><strong>示例 2:</strong></p>
|
||||
|
||||
<pre>
|
||||
<strong>输入:</strong> candidates = [2,5,2,1,2], target = 5,
|
||||
<strong>输出:</strong>
|
||||
<strong>输入:</strong>candidates = [2,5,2,1,2], target = 5
|
||||
<strong>输出:</strong>
|
||||
[
|
||||
[1,2,2],
|
||||
[5]
|
||||
@@ -28,7 +28,7 @@
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p><strong>提示:</strong></p>
|
||||
<p><strong>提示:</strong></p>
|
||||
|
||||
<ul>
|
||||
<li><code>1 <= candidates.length <= 100</code></li>
|
||||
|
Reference in New Issue
Block a user