Code

Python3

def minGroups(self, intervals: List[List[int]]) -> int:
  I = sorted(intervals, key=lambda x:x[0])
 
  heap = []
 
  for start, end in I:
    if heap and heap[0] < start:  # implies a range has been eaten (expanded by another range)
      heapppop(heap)
    heappush(heap, end)
 
  return len(heap)

Big O Analysis

  • Runtime

    The runtime complexity here is since we are visiting all intervals exactly once.

  • Memory

    The memory usage is since we use the collections.defaultdict object to store multiple and modulos.

— A

GitHub | Twitter