Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Just Fizz! by catloverss
def checkio(num: int) -> str:
if num % 3 == 0:
return "Fizz"
return str(num)
Dec. 4, 2025
Comments: