First solution in Clear category for Just Fizz! by ssk8
def checkio(num: int) -> str: return str(num) if num%3 else "Fizz"
Nov. 27, 2022
Comments: