Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
0x45 solution in Speedy category for Best Stock by lombord0102
def best_stock(data: dict[str, float]) -> str:
return max(data.keys(), key=lambda x: data[x])
Dec. 31, 2022
Comments: