summaryrefslogtreecommitdiff
path: root/progs/a859.py
blob: 2718025a6da3e201db05f089a9a0109e621adf96 (plain)
1
2
3
4
import heapq as hq
def heap_queue_smallest(nums,n):
  smallest_nums = hq.nsmallest(n, nums)
  return smallest_nums