Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Best Stock by dx2-66
def best_stock(data: dict) -> str:
return max(data, key=lambda x: data[x])
April 21, 2022
Comments: