Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
BiggerPrice.c solution in Clear category for Bigger Price by trudnopodobny
def bigger_price(limit: int, data: list) -> list:
return sorted(data, key=lambda x: x['price'], reverse = True)[:limit]
Oct. 4, 2018