Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Best Stock by ljwoodward
def best_stock(data):
max = sorted(data.values())[-1]
for name, price in data.items():
if price == max:
return name
Nov. 3, 2018