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