Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Simple solution in Clear category for Fizz Buzz by PawlakBartosz43
def checkio(number):
result = ""
if(number % 3 == 0):
result += "Fizz"
if(number % 5 == 0):
if(result != ""):
result += " "
result += "Buzz"
if(result == ""):
result = str(number)
return result
Oct. 31, 2016