JuniorArray

Summary Ranges

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
Example 1
Inputnums = [0,1,2,4,5,7]
Output["0->2","4->5","7"]
The ranges are [0,2] as "0->2", [4,5] as "4->5", and [7,7] as "7".
Example 2
Inputnums = [0,2,3,4,6,8,9]
Output["0","2->4","6","8->9"]
The ranges are [0,0] as "0", [2,4] as "2->4", [6,6] as "6", and [8,9] as "8->9".

Constraints

  • 0 <= nums.length <= 20
  • -2^31 <= nums[i] <= 2^31 - 1
  • All the values of nums are unique.
  • nums is sorted in ascending order.

Asked at 8 companies

</>

Your Solution

(Ctrl/Cmd + Enter)

Switching Language

Loading template...

Loading...

Sign in to save your progress

AI code evaluation

Get a correctness verdict, missed edge cases, and complexity analysis of your solution.

Sign in to evaluate