summaryrefslogtreecommitdiff
path: root/progs/a572.py
blob: d8b4fb6b999d1e456a5897a092088f9037b17a02 (plain)
1
2
3
4
5
import heapq as hq
def heap_replace(heap,a):
  hq.heapify(heap)
  hq.heapreplace(heap, a)
  return heap