Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
I think it simple solution in Clear category for Bigger Price by Kuno39962216
def bigger_price(limit: int, data: list) -> list:
return sorted(data, key=lambda x: -x['price'])[:limit]
April 10, 2019