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" if a != b
  • "a" if a == 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
Summary Ranges: Group Consecutive NumbersInput:012457Group:0,1,24,57Output:"0->2""4->5""7"Result: ["0->2", "4->5", "7"]
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)
Asked in
Google 15 Facebook 12 Microsoft 8
180.0K Views
Medium Frequency
~15 min Avg. Time
2.8K Likes
Ln 1, Col 1
Smart Actions
💡 Explanation
AI Ready
💡 Suggestion Tab to accept Esc to dismiss
// Output will appear here after running code
Code Editor Closed
Click the red button to reopen