diff options
Diffstat (limited to 'progs/a859.py')
-rw-r--r-- | progs/a859.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/progs/a859.py b/progs/a859.py new file mode 100644 index 0000000..2718025 --- /dev/null +++ b/progs/a859.py @@ -0,0 +1,4 @@ +import heapq as hq
+def heap_queue_smallest(nums,n):
+ smallest_nums = hq.nsmallest(n, nums)
+ return smallest_nums
\ No newline at end of file |