Summary Ranges - Problem
You are given a sorted unique integer array nums.
A range [a,b] is the set of all integers from a to b (inclusive).
Return the smallest sorted list of ranges that cover all the numbers in the array exactly. That is, each element of nums is covered by exactly one of the ranges, and there is no integer x such that x is in one of the ranges but not in nums.
Each range [a,b] in the list should be output as:
"a->b"ifa != b"a"ifa == b
Input & Output
Example 1 — Basic Consecutive Ranges
$
Input:
nums = [0,1,2,4,5,7]
›
Output:
["0->2","4->5","7"]
💡 Note:
The ranges are: [0,2] → "0->2", [4,5] → "4->5", [7,7] → "7"
Example 2 — All Single Elements
$
Input:
nums = [0,2,3,4,6,8,9]
›
Output:
["0","2->4","6","8->9"]
💡 Note:
Single element 0, range [2,4], single element 6, range [8,9]
Example 3 — Single Element
$
Input:
nums = [1]
›
Output:
["1"]
💡 Note:
Only one element, so output is just that element as string
Constraints
- 0 ≤ nums.length ≤ 20
- -231 ≤ nums[i] ≤ 231 - 1
- All values in nums are unique
- nums is sorted in ascending order
Visualization
Tap to expand
Understanding the Visualization
1
Input Array
Sorted array of unique integers
2
Group Consecutive
Identify consecutive number sequences
3
Format Ranges
Convert to range strings
Key Takeaway
🎯 Key Insight: A range ends when the next number isn't consecutive (current + 1)
💡
Explanation
AI Ready
💡 Suggestion
Tab
to accept
Esc
to dismiss
// Output will appear here after running code