First solution in Speedy category for Best Stock by tarakonas
def best_stock(data): return max(data.items(), key = lambda x: x[1])[0]
March 17, 2018