Skip to content

Commit c637967

Browse files
authored
feat: update lc problem: No.0057 (doocs#1526)
1 parent bd9c9c7 commit c637967

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

solution/0000-0099/0057.Insert Interval/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
<pre>
2525
<strong>输入:</strong>intervals = [[1,2],[3,5],[6,7],[8,10],[12,16]], newInterval = [4,8]
2626
<strong>输出:</strong>[[1,2],[3,10],[12,16]]
27-
<strong>解释:</strong>这是因为新的区间 <code>[4,8]</code><code>[3,5],[6,7],[8,10]</code> 重叠。</pre>
27+
<strong>解释:</strong>这是因为新的区间 [4,8] 与 [3,5],[6,7],[8,10] 重叠。</pre>
2828

2929
<p><strong>示例 3:</strong></p>
3030

solution/config.py

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
38,
88
39,
99
40,
10+
57,
1011
115,
1112
128,
1213
235,

0 commit comments

Comments
 (0)