Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
native_fizz_buzz solution in Uncategorized category for Fizz Buzz by Jon_Red
def checkio(n:int)->str:
r=' '.join(['Fizz'if n%3==0 else'','Buzz'if n%5==0 else'']).strip()
return r if r else str(n)
April 23, 2020
Comments: