Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit 240c757

Browse files
chore: update lc problem: No.2677 (doocs#1516)
1 parent 7c4d7c0 commit 240c757

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

‎solution/2600-2699/2677.Chunk Array/README.md‎

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,23 +19,23 @@
1919
<pre>
2020
<b>输入:</b>arr = [1,2,3,4,5], size = 1
2121
<b>输出:</b>[[1],[2],[3],[4],[5]]
22-
<b>解释:</b>数组 <code>arr </code>被分割成了每个只有一个元素的子数组。
22+
<b>解释:</b>数组 arr 被分割成了每个只有一个元素的子数组。
2323
</pre>
2424

2525
<p><strong class="example">示例 2:</strong></p>
2626

2727
<pre>
2828
<b>输入:</b>arr = [1,9,6,3,2], size = 3
2929
<b>输出:</b>[[1,9,6],[3,2]]
30-
<b>解释:</b>数组 <code>arr </code>被分割成了每个有三个元素的子数组。然而,第二个子数组只有两个元素。
30+
<b>解释:</b>数组 arr 被分割成了每个有三个元素的子数组。然而,第二个子数组只有两个元素。
3131
</pre>
3232

3333
<p><strong class="example">示例 3:</strong></p>
3434

3535
<pre>
3636
<b>输入:</b>arr = [8,5,3,2,6], size = 6
3737
<b>输出:</b>[[8,5,3,2,6]]
38-
<b>解释:</b><code>size </code>大于 <code>arr.length </code>,因此所有元素都在第一个子数组中。
38+
<b>解释:</b>size 大于 arr.length ,因此所有元素都在第一个子数组中。
3939
</pre>
4040

4141
<p><strong class="example">示例 4:</strong></p>

‎solution/config.py‎

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,7 @@
9191
2578,
9292
2606,
9393
2643,
94+
2677,
9495
2682,
9596
2731,
9697
2788,

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /