Given an array of meeting time intervals intervals where intervals[i] = [start_i, end_i], return the minimum number of conference rooms required.
intervals = [[0,30],[5,10],[15,20]]2intervals = [[7,10],[2,4]]11 <= intervals.length <= 10^40 <= start_i < end_i <= 10^6Expected time complexity: O(n log n)Run your code to see results
Use Cmd+Enter to run