[LC] 252. Meeting Rooms

Posted xuanlu

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[LC] 252. Meeting Rooms相关的知识,希望对你有一定的参考价值。

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

Example 2:

Input: [[7,10],[2,4]]
Output: true

NOTE: input types have been changed on April 15, 2019. Please reset to default code definition to get new method signature.

 

class Solution {
    public boolean canAttendMeetings(int[][] intervals) {
        if (intervals == null || intervals.length == 0) {
            return true;
        }
        Arrays.sort(intervals, (a, b) -> a[0] - b[0]);
        for (int i = 1; i < intervals.length; i++) {
            if (intervals[i - 1][1] > intervals[i][0]) {
                return false;
            }
        }
        return true;
    }
}

 

以上是关于[LC] 252. Meeting Rooms的主要内容,如果未能解决你的问题,请参考以下文章

252. Meeting Rooms

252 Meeting Rooms

252.Meeting Rooms

Leetcode 252, 253. Meeting Rooms

LeetCode 252. Meeting Rooms (会议室)

[LC] 253. Meeting Rooms II