-
Notifications
You must be signed in to change notification settings - Fork 60
Expand file tree
/
Copy path0759-employee-free-time.js
More file actions
51 lines (45 loc) · 1.55 KB
/
0759-employee-free-time.js
File metadata and controls
51 lines (45 loc) · 1.55 KB
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
/**
* 759. Employee Free Time
* https://leetcode.com/problems/employee-free-time/
* Difficulty: Hard
*
* We are given a list schedule of employees, which represents the working time for each employee.
*
* Each employee has a list of non-overlapping Intervals, and these intervals are in sorted order.
*
* Return the list of finite intervals representing common, positive-length free time for all
* employees, also in sorted order.
*
* (Even though we are representing Intervals in the form [x, y], the objects inside are Intervals,
* not lists or arrays. For example, schedule[0][0].start = 1, schedule[0][0].end = 2, and
* schedule[0][0][0] is not defined). Also, we wouldn't include intervals like [5, 5] in our
* answer, as they have zero length.
*/
/**
* @param {Interval[][]} schedule
* @return {Interval[]}
*/
var employeeFreeTime = function(schedule) {
const allIntervals = [];
for (const employee of schedule) {
for (const interval of employee) {
allIntervals.push(interval);
}
}
allIntervals.sort((a, b) => a.start - b.start);
const merged = [];
for (const interval of allIntervals) {
if (merged.length === 0 || merged[merged.length - 1].end < interval.start) {
merged.push(interval);
} else {
merged[merged.length - 1].end = Math.max(merged[merged.length - 1].end, interval.end);
}
}
const result = [];
for (let i = 0; i < merged.length - 1; i++) {
if (merged[i].end < merged[i + 1].start) {
result.push(new Interval(merged[i].end, merged[i + 1].start));
}
}
return result;
};