First solution in Clear category for Best Stock by Tinus_Trotyl
def best_stock(data): return max(data, key = data.__getitem__)
Dec. 9, 2017