mirror of
https://gitee.com/coder-xiaomo/leetcode-problemset
synced 2025-10-20 20:46:47 +08:00
存量题库数据更新
This commit is contained in:
@@ -5,7 +5,7 @@
|
||||
<p>Return <em>the maximum <strong>score</strong> you can achieve of all the possible partitions</em>. Answers within <code>10<sup>-6</sup></code> of the actual answer will be accepted.</p>
|
||||
|
||||
<p> </p>
|
||||
<p><strong>Example 1:</strong></p>
|
||||
<p><strong class="example">Example 1:</strong></p>
|
||||
|
||||
<pre>
|
||||
<strong>Input:</strong> nums = [9,1,2,3,9], k = 3
|
||||
@@ -16,7 +16,7 @@ We could have also partitioned nums into [9, 1], [2], [3, 9], for example.
|
||||
That partition would lead to a score of 5 + 2 + 6 = 13, which is worse.
|
||||
</pre>
|
||||
|
||||
<p><strong>Example 2:</strong></p>
|
||||
<p><strong class="example">Example 2:</strong></p>
|
||||
|
||||
<pre>
|
||||
<strong>Input:</strong> nums = [1,2,3,4,5,6,7], k = 4
|
||||
|
Reference in New Issue
Block a user