-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathleetcode-252-meetingRooms.js
115 lines (103 loc) · 1.86 KB
/
leetcode-252-meetingRooms.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
// Title: Meeting Rooms
// Difficulty: Medium
// Given an array of meeting time intervals consisting of start and end times [[s1,e1],[s2,e2],...] (si < ei), determine if a person could attend all meetings.
// Example 1:
// Input: [[0,30],[5,10],[15,20]]
// Output: false
// Explanation:
// Meeting 1: [0, 30]
// Meeting 2: [5, 10]
// Meeting 3: [15, 20]
// The person cannot attend all meetings because meeting 2 starts while meeting 1 is still in progress.
// Example 2:
// Input: [[7,10],[2,4]]
// Output: true
// Explanation:
// Meeting 1: [7, 10]
// Meeting 2: [2, 4]
// The person can attend both meetings because meeting 2 starts before meeting 1 ends.
// Note:
// The number of meetings is at least 2 and at most 10^4.
// The input array will always have a non-empty solution and each element of the array will have a positive duration.
// The input array is already sorted in ascending order by start time.
// p: arr;
// r: boolean;
// e: [[0,30],[5,10],[15,20]]
//
const meetingRooms = (a) => {
a.sort((i, j) => i[0] - j[0]);
for (let i = 1; i < a.length; i++) {
if (a[i - 1][1] > a[i][0]) return false;
}
return true;
};
console.log(
meetingRooms([
[0, 30],
[5, 10],
[15, 20],
])
);
console.log(
meetingRooms([
[7, 10],
[2, 4],
])
);
console.log(
meetingRooms([
[1, 5],
[2, 3],
[4, 6],
])
);
console.log(
meetingRooms([
[1, 5],
[2, 5],
[3, 5],
])
);
console.log(
meetingRooms([
[1, 2],
[2, 3],
[3, 4],
])
);
console.log(
meetingRooms([
[1, 3],
[2, 4],
[3, 5],
])
);
console.log(
meetingRooms([
[1, 3],
[2, 4],
[4, 5],
])
);
console.log(
meetingRooms([
[1, 2],
[1, 2],
[1, 2],
])
);
console.log(
meetingRooms([
[1, 4],
[4, 8],
[8, 12],
])
);
console.log(
meetingRooms([
[1, 4],
[4, 8],
[8, 12],
[12, 16],
])
);