-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmergeInterval.js
56 lines (48 loc) · 948 Bytes
/
mergeInterval.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
var merge = function (intervals) {
if (intervals.length <= 1) {
return intervals;
}
intervals.sort((a, b) => a[0] - b[0]);
const output = [];
output.push(intervals[0]);
let i = 1;
while (i < intervals.length) {
const previous = output[output.length - 1];
const current = intervals[i];
if (current[0] <= previous[1]) {
output[output.length - 1] = [
Math.min(current[0], previous[0]),
Math.max(current[1], previous[1]),
];
} else {
console.log();
output.push(intervals[i]);
}
i++;
}
while (i < intervals.length) {
output.push(intervals[i]);
i++;
}
return output;
};
// const intervals = [
// [1, 3],
// [2, 6],
// [8, 10],
// [15, 18],
// ];
// const intervals = [
// [1, 4],
// [0, 0],
// ];
// const intervals = [
// [1, 4],
// [4, 5],
// ];
const intervals = [
[1, 4],
[0, 2],
[3, 5],
];
console.log(merge(intervals));