Skip to content

Commit 7c61dd5

Browse files
authored
chore: update lc problem: No.1187 (doocs#1318)
* chore: update lc problem: No.1187 * fix: add skip_lc_problems 1187 * fix: revert ]
1 parent 118a810 commit 7c61dd5

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

solution/1100-1199/1187.Make Array Strictly Increasing/README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -19,23 +19,23 @@
1919
<pre>
2020
<strong>输入:</strong>arr1 = [1,5,3,6,7], arr2 = [1,3,2,4]
2121
<strong>输出:</strong>1
22-
<strong>解释:</strong>用 2 来替换 <code>5,之后</code> <code>arr1 = [1, 2, 3, 6, 7]</code>
22+
<strong>解释:</strong>用 2 来替换 5,之后 arr1 = [1, 2, 3, 6, 7]。
2323
</pre>
2424

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

2727
<pre>
2828
<strong>输入:</strong>arr1 = [1,5,3,6,7], arr2 = [4,3,1]
2929
<strong>输出:</strong>2
30-
<strong>解释:</strong>用 3 来替换 <code>5,然后</code>用 4 来替换 3<code>,得到</code> <code>arr1 = [1, 3, 4, 6, 7]</code>
30+
<strong>解释:</strong>用 3 来替换 5,然后用 4 来替换 3,得到arr1 = [1, 3, 4, 6, 7]。
3131
</pre>
3232

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

3535
<pre>
3636
<strong>输入:</strong>arr1 = [1,5,3,6,7], arr2 = [1,6,3,3]
3737
<strong>输出:</strong>-1
38-
<strong>解释:</strong>无法使 <code>arr1 严格递增</code>。</pre>
38+
<strong>解释:</strong>无法使 arr1 严格递增。</pre>
3939

4040
<p>&nbsp;</p>
4141

solution/config.py

+1
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@
3131
978,
3232
983,
3333
1096,
34+
1187,
3435
1244,
3536
1266,
3637
1396,

0 commit comments

Comments
 (0)