|
| 1 | +<p>You are given two lists of closed intervals, <code>firstList</code> and <code>secondList</code>, where <code>firstList[i] = [start<sub>i</sub>, end<sub>i</sub>]</code> and <code>secondList[j] = [start<sub>j</sub>, end<sub>j</sub>]</code>. Each list of intervals is pairwise <strong>disjoint</strong> and in <strong>sorted order</strong>.</p> |
| 2 | + |
| 3 | +<p>Return <em>the intersection of these two interval lists</em>.</p> |
| 4 | + |
| 5 | +<p>A <strong>closed interval</strong> <code>[a, b]</code> (with <code>a <= b</code>) denotes the set of real numbers <code>x</code> with <code>a <= x <= b</code>.</p> |
| 6 | + |
| 7 | +<p>The <strong>intersection</strong> of two closed intervals is a set of real numbers that are either empty or represented as a closed interval. For example, the intersection of <code>[1, 3]</code> and <code>[2, 4]</code> is <code>[2, 3]</code>.</p> |
| 8 | + |
| 9 | +<p> </p> |
| 10 | +<p><strong class="example">Example 1:</strong></p> |
| 11 | +<img alt="" src="https://assets.leetcode.com/uploads/2019/01/30/interval1.png" style="width: 700px; height: 194px;" /> |
| 12 | +<pre> |
| 13 | +<strong>Input:</strong> firstList = [[0,2],[5,10],[13,23],[24,25]], secondList = [[1,5],[8,12],[15,24],[25,26]] |
| 14 | +<strong>Output:</strong> [[1,2],[5,5],[8,10],[15,23],[24,24],[25,25]] |
| 15 | +</pre> |
| 16 | + |
| 17 | +<p><strong class="example">Example 2:</strong></p> |
| 18 | + |
| 19 | +<pre> |
| 20 | +<strong>Input:</strong> firstList = [[1,3],[5,9]], secondList = [] |
| 21 | +<strong>Output:</strong> [] |
| 22 | +</pre> |
| 23 | + |
| 24 | +<p> </p> |
| 25 | +<p><strong>Constraints:</strong></p> |
| 26 | + |
| 27 | +<ul> |
| 28 | + <li><code>0 <= firstList.length, secondList.length <= 1000</code></li> |
| 29 | + <li><code>firstList.length + secondList.length >= 1</code></li> |
| 30 | + <li><code>0 <= start<sub>i</sub> < end<sub>i</sub> <= 10<sup>9</sup></code></li> |
| 31 | + <li><code>end<sub>i</sub> < start<sub>i+1</sub></code></li> |
| 32 | + <li><code>0 <= start<sub>j</sub> < end<sub>j</sub> <= 10<sup>9</sup> </code></li> |
| 33 | + <li><code>end<sub>j</sub> < start<sub>j+1</sub></code></li> |
| 34 | +</ul> |
0 commit comments