Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Creative category for Fizz Buzz by Serg900vd
def checkio(nb: int) -> str:
tabl = [["Fizz Buzz","Fizz"],["Buzz",str(nb)]]
return tabl[bool(nb%3)][bool(nb%5)]
Jan. 12, 2022
Comments: