Skip to content

Commit 7bb7899

Browse files
committed
bug-hidden: 在首行的```前面添加了文字,避免了hexo bug的触发
详情可见[Tag v0.4.1.1](https://github.com/LetMeFly666/LeetCode/releases/tag/v0.4.1.1)
1 parent 11a51d3 commit 7bb7899

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Solutions/LeetCode 0410.分割数组的最大值.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,13 +60,13 @@ tags: [题解, LeetCode, 困难, 贪心, 数组, 二分查找, 二分, 动态规
6060
>
6161
> ```cnt```加上当前元素超过了```s```,则将当前元素划分为一组(```k--``````cnt = 0```)。
6262
>
63-
> ```cnt```加上当前元素。
63+
> ```cnt```加上当前元素。
6464
>
6565
> 遍历结束后,判断```k - 1```是否大于等于```0```。若是,则返回```true```,否则返回```false```
6666
6767
有了这样的函数,我们只需要在主函数中写一个二分,枚举值```mid```是否能通过```check```
6868

69-
> ```l```初始值为```0``````r```初始值为“无穷大”(数组中所有元素之和再加一)。
69+
> ```l```初始值为```0``````r```初始值为“无穷大”(数组中所有元素之和再加一)。
7070
>
7171
> ```l < r```时,令$mid = \lfloor \frac{l+r}{2} \rfloor$。
7272
>

0 commit comments

Comments
 (0)