First solution in Clear category for Best Stock by Cyrus490
def best_stock(data): return max(data.keys(), key=lambda a:data.get(a))
Dec. 11, 2020