-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d51ad78
commit c941576
Showing
1 changed file
with
33 additions
and
0 deletions.
There are no files selected for viewing
33 changes: 33 additions & 0 deletions
33
0632-smallest-range-covering-elements-from-k-lists/README.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
<h2><a href="https://leetcode.com/problems/smallest-range-covering-elements-from-k-lists">632. Smallest Range Covering Elements from K Lists</a></h2><h3>Hard</h3><hr><p>You have <code>k</code> lists of sorted integers in <strong>non-decreasing order</strong>. Find the <b>smallest</b> range that includes at least one number from each of the <code>k</code> lists.</p> | ||
|
||
<p>We define the range <code>[a, b]</code> is smaller than range <code>[c, d]</code> if <code>b - a < d - c</code> <strong>or</strong> <code>a < c</code> if <code>b - a == d - c</code>.</p> | ||
|
||
<p> </p> | ||
<p><strong class="example">Example 1:</strong></p> | ||
|
||
<pre> | ||
<strong>Input:</strong> nums = [[4,10,15,24,26],[0,9,12,20],[5,18,22,30]] | ||
<strong>Output:</strong> [20,24] | ||
<strong>Explanation: </strong> | ||
List 1: [4, 10, 15, 24,26], 24 is in range [20,24]. | ||
List 2: [0, 9, 12, 20], 20 is in range [20,24]. | ||
List 3: [5, 18, 22, 30], 22 is in range [20,24]. | ||
</pre> | ||
|
||
<p><strong class="example">Example 2:</strong></p> | ||
|
||
<pre> | ||
<strong>Input:</strong> nums = [[1,2,3],[1,2,3],[1,2,3]] | ||
<strong>Output:</strong> [1,1] | ||
</pre> | ||
|
||
<p> </p> | ||
<p><strong>Constraints:</strong></p> | ||
|
||
<ul> | ||
<li><code>nums.length == k</code></li> | ||
<li><code>1 <= k <= 3500</code></li> | ||
<li><code>1 <= nums[i].length <= 50</code></li> | ||
<li><code>-10<sup>5</sup> <= nums[i][j] <= 10<sup>5</sup></code></li> | ||
<li><code>nums[i]</code> is sorted in <strong>non-decreasing</strong> order.</li> | ||
</ul> |