diff options
Diffstat (limited to 'progs/a34.py')
-rw-r--r-- | progs/a34.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/progs/a34.py b/progs/a34.py new file mode 100644 index 0000000..b3b4db3 --- /dev/null +++ b/progs/a34.py @@ -0,0 +1,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))]
\ No newline at end of file |