heapq.heappop(heap)
Pop and return the smallest item from the heap, maintaining the heap invariant. If the heap is empty, IndexError
is raised. To access the smallest item without popping it, use heap[0]
.
heapq.heappop(heap)
Pop and return the smallest item from the heap, maintaining the heap invariant. If the heap is empty, IndexError
is raised. To access the smallest item without popping it, use heap[0]
.
Please login to continue.