253. Meeting Rooms II

Description

Given an array of meeting time intervals consisting of start and end times [[s1,e1],[s2,e2],...] (si < ei), find the minimum number of conference rooms required.

Constraints

Approach

Examples

Input: [[0, 30], [5, 10], [15, 20]]

Output: 2

Solutions

Follow up

Last updated

Was this helpful?