summaryrefslogtreecommitdiff
path: root/progs/unparsable_programs/a194.py
blob: 7574268246d46e26cabbbd7b4de6d777f5e0101e (plain)
1
2
3
4
import heapq
def cheap_items(items,n):
  cheap_items = heapq.nsmallest(n, items, key=lambda s: s['price'])
  return cheap_items