given an array of time intervals (start, end) for classroom lectures (possibly overlapping), find the minimum number of rooms required. for example, given [(30, 75), (0, 50), (60, 150)], you should return 2

0

given an array of time intervals (start, end) for classroom lectures (possibly overlapping), find the minimum number of rooms required. for example, given [(30, 75), (0, 50), (60, 150)], you should return 2.

By Beginner Andrea Barrows at Jun 20 2021


Related code examples


Code examples by languages