Leetcode 0252. Meeting Rooms
Posted on Sun 08 December 2024 in Leetcode Premium • Tagged with sort
Question Link : https://leetcode.com/problems/meeting-rooms/
Difficulty: Easy
Premium: True
Question
Given an array of meeting time intervals where intervals[i] = [starti, endi], determine if a person could attend all meetings. Example 1: Input: intervals = [[0,30],[5,10],[15,20]] Output: false Example 2: Input: intervals = [[7,10 …
Continue reading