summaryrefslogtreecommitdiff
path: root/progs/a34.py
blob: b3b4db33a4eecd6009d04a840f59f1b5fa380201 (plain)
1
2
3
4
5
6
import heapq as hq
def heap_sort(iterable):
    h = []
    for value in iterable:
        hq.heappush(h, value)
    return [hq.heappop(h) for i in range(len(h))]