Meeting Rooms II

Try to solve the Meeting Rooms II problem.

Statement

We are given an input array of meeting time intervals, intervals, where each interval has a start time and an end time. Your task is to find the minimum number of meeting rooms required to hold these meetings.

An important thing to note here is that the specified end time for each meeting is exclusive.

Constraints

  • 1≤1 \leq intervals.length ≤103\leq 10^{3}
  • 00 ≤\leq startistart_{i} <\lt endiend_{i} ≤\leq 10610^{6}

Examples

Create a free account to view this lesson.

By signing up, you agree to Educative's Terms of Service and Privacy Policy