First solution in Speedy category for Just Fizz! by Matt_Leroy
def checkio(x): if x % 3: return str(x) else: return "Fizz"
May 21, 2023