-
Notifications
You must be signed in to change notification settings - Fork 69
/
Copy pathsummaryRanges.js
38 lines (30 loc) · 879 Bytes
/
summaryRanges.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
/**
* Given a unsorted integer array without duplicates, return the summary of its ranges.
Example 1:
Input: [0,1,2,4,5,7]
Output: ["0->2","4->5","7"]
Explanation: 0,1,2 form a continuous range; 4,5 form a continuous range.
Example 2:
Input: [0,2,3,4,6,8,9]
Output: ["0","2->4","6","8->9"]
Explanation: 2,3,4 form a continuous range; 8,9 form a continuous range.
*/
const summaryRanges = nums => {
if (nums.length === 0) {
return [];
}
nums.sort((a, b) => a - b);
const result = [];
for (let start = 0, end = 0; end < nums.length; end++) {
if (end + 1 < nums.length && nums[end + 1] === nums[end] + 1) {
continue;
}
if (start === end) {
result.push(nums[start] + '');
} else {
result.push(start + '->' + end);
}
start = end + 1;
}
return result;
}