Given a list of time ranges, I need to find the maximum number of overlaps.
Following is a dataset showing a 10 minute interval of calls, from which I am trying to f
Following must work:
numberOfCalls
to 0 (count variable)Run through your time values and:
Complexity: O(n log(n)) for sorting, O(n) to run through all records