First solution in Clear category for Best Stock by twilyght
def best_stock(data: dict) -> str: return max(data, key=data.get)
May 29, 2020
Comments: