-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathmissing_ranges.dart
38 lines (31 loc) · 1.33 KB
/
missing_ranges.dart
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
/*
-* Missing Ranges *-
Given a sorted integer array where the range of elements are in the inclusive range [lower, upper], return its missing ranges.
For example, given [0, 1, 3, 50, 75], lower = 0 and upper = 99, return [“2”, “4->49”, “51->74”, “76->99”].
*/
class Solution {
List<String> findMissingRanges(List<int> nums, int lower, int upper) {
// array to add ranges
List<String> result = [];
// start at lower - 1 for edge case where lower === nums[0]
int previous = lower - 1;
// loop for nums.length times so we can compare the last value with upper
for (int i = 0; i <= nums.length; i++) {
// current number to compare to prev
// when i === nums.length we will compare prev = nums[nums.length-1] and upper
// the upper+1 is to account for nums[nums.length-1]===upper
int current = (i < nums.length) ? nums[i] : upper + 1;
// check if we need to add a range to the array
if (previous + 1 <= current - 1) {
// if equal then add any of the numbers to the array
// if < than, then add the range string to the array
result.add(previous + 1 == current - 1
? '${previous + 1}'
: '${previous + 1}->${current - 1}');
}
// set prev to compare in the next iteration
previous = current;
}
return result;
}
}