Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
BestStock.c solution in Clear category for Best Stock by trudnopodobny
def best_stock(data):
best = 0
result = ''
for s in data:
if data[s] > best:
best = data[s]
result = s
return result
Oct. 4, 2018