163. Missing Ranges
Description
You are given an inclusive range [lower, upper] and a sorted unique integer array nums, where all elements are in the inclusive range.
A number x is considered missing if x is in the range [lower, upper] and x is not in nums.
Return the smallest sorted list of ranges that cover every missing number exactly. That is, no element of nums is in any of the ranges, and each missing number is in one of the ranges.
Each range [a,b] in the list should be output as:
"a->b"ifa != b"a"ifa == b
Constraints
-109 <= lower <= upper <= 1090 <= nums.length <= 100lower <= nums[i] <= upperAll the values of
numsare unique.
Approach
Links
GeeksforGeeks
YouTube
Examples
Input: nums = [0, 1, 3, 50, 75], lower = 0, upper = 99
Output: ["2", "4->49", "51->74", "76->99"]
Explanation: The ranges are:
[2, 2] --> "2"
[4, 49] --> "4->49"
[51, 74] --> "51->74"
[76, 99] --> "76->99"
Input: nums = [], lower = 1, upper = 1
Output: ["1"]
Explanation: The only missing range is [1,1], which becomes "1".
Input: nums = [], lower = -3, upper = -1
Output: ["-3->-1"]
Explanation: The only missing range is [-3,-1], which becomes "-3->-1".
Input: nums = [-1], lower = -1, upper = -1
Output: []
Explanation: There are no missing ranges since there are no missing numbers.
Input: nums = [-1], lower = -2, upper = -1
Output: ["-2"]
Solutions
Follow up
Last updated
Was this helpful?