Find the minimum number of meeting rooms needed to schedule all meetings without overlaps.
Constraints
Example
>>> min_meeting_rooms([(0, 30), (5, 10), (15, 20)]) 2 >>> min_meeting_rooms([(7, 10), (2, 4)]) 1 >>> min_meeting_rooms([]) 0
Recent Submissions
No submissions yet — hit Run Tests to try!
Hints