252. Meeting Rooms
Last updated
Was this helpful?
Last updated
Was this helpful?
Given an array of meeting time intervals
where intervals[i] = [starti, endi]
, determine if a person could attend all meetings.
0 <= intervals.length <= 104
intervals.length == 2
0 <= starti < endi <= 106
GeeksforGeeks
ProgramCreek
YouTube
Input: intervals = [[0, 30], [5, 10], [15, 20]]
Output: false