Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Direct solution in Clear category for Best Stock by amandel
def best_stock(data: dict[str, float]) -> str:
return max(data.items(),key= lambda x:x[1])[0]
print("Example:")
print(best_stock({"CAC": 10.0, "ATX": 390.2, "WIG": 1.2}))
assert best_stock({"CAC": 10.0, "ATX": 390.2, "WIG": 1.2}) == "ATX"
assert best_stock({"CAC": 91.1, "ATX": 1.01, "TASI": 120.9}) == "TASI"
print("The mission is done! Click 'Check Solution' to earn rewards!")
Nov. 30, 2022
Comments: