mirror of
https://gitee.com/coder-xiaomo/leetcode-problemset
synced 2025-09-06 07:51:41 +08:00
存量题库数据更新
This commit is contained in:
@@ -25,7 +25,7 @@
|
||||
<p>A <strong>half-closed segment</strong> <code>[a, b)</code> is the section of the number line between points <code>a</code> and <code>b</code> <strong>including</strong> point <code>a</code> and <strong>not including</strong> point <code>b</code>.</p>
|
||||
|
||||
<p> </p>
|
||||
<p><strong>Example 1:</strong></p>
|
||||
<p><strong class="example">Example 1:</strong></p>
|
||||
<img alt="" src="https://assets.leetcode.com/uploads/2021/06/18/1.png" style="width: 529px; height: 241px;" />
|
||||
<pre>
|
||||
<strong>Input:</strong> segments = [[1,4,5],[4,7,7],[1,7,9]]
|
||||
@@ -35,7 +35,7 @@
|
||||
- [4,7) is colored {7,9} (with a sum of 16) from the second and third segments.
|
||||
</pre>
|
||||
|
||||
<p><strong>Example 2:</strong></p>
|
||||
<p><strong class="example">Example 2:</strong></p>
|
||||
<img alt="" src="https://assets.leetcode.com/uploads/2021/06/18/2.png" style="width: 532px; height: 219px;" />
|
||||
<pre>
|
||||
<strong>Input:</strong> segments = [[1,7,9],[6,8,15],[8,10,7]]
|
||||
@@ -47,7 +47,7 @@
|
||||
- [8,10) is colored 7 from the third segment.
|
||||
</pre>
|
||||
|
||||
<p><strong>Example 3:</strong></p>
|
||||
<p><strong class="example">Example 3:</strong></p>
|
||||
<img alt="" src="https://assets.leetcode.com/uploads/2021/07/04/c1.png" style="width: 529px; height: 289px;" />
|
||||
<pre>
|
||||
<strong>Input:</strong> segments = [[1,4,5],[1,4,7],[4,7,1],[4,7,11]]
|
||||
|
Reference in New Issue
Block a user