0252. Meeting Rooms
https://leetcode.com/problems/meeting-rooms
Description
Given an array of meeting time intervals
where intervals[i] = [starti, endi]
, determine if a person could attend all meetings.
Example 1:
Example 2:
Constraints:
0 <= intervals.length <= 104
intervals[i].length == 2
0 <= starti < endi <= 106
ac
Last updated
Was this helpful?