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 - One Pass Linear Scan INPUT Sorted Unique Integer Array 0 1 2 4 5 7 i=0 i=1 i=2 i=3 i=4 i=5 Consecutive Groups: 0, 1, 2 4, 5 7 nums = [0,1,2,4,5,7] ALGORITHM STEPS 1 Initialize Start range at first elem 2 Scan Array Check if nums[i+1]=nums[i]+1 3 Detect Gap Gap found: close range 4 Format Output "a-->b" or "a" format Processing Flow: i=0: start=0 i=2: gap at 3, save "0-->2" i=3: start=4 i=4: gap at 6, save "4-->5" i=5: start=7, save "7" FINAL RESULT Smallest Range List: "0-->2" Covers: 0, 1, 2 "4-->5" Covers: 4, 5 "7" Covers: 7 (single) ["0-->2","4-->5","7"] OK - All Covered! 3 ranges cover all 6 elements Key Insight: Since the array is sorted, consecutive numbers differ by exactly 1. When we find a gap (nums[i+1] - nums[i] > 1), we know the current range ends. This allows O(n) single pass solution by tracking range start and closing it when a discontinuity is detected. TutorialsPoint - Summary Ranges | One Pass Linear Scan Approach
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