Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Second solution in Creative category for Fizz Buzz by isisbinder
def checkio(number):
initial = number*number%3*5
end = 9--number**4%5
return "Fizz Buzz"[initial:end].strip() or str(number)
#Some hints:
#Convert a number in the string with str(n)
#These "asserts" using only for self-checking and not necessary for auto-testing
April 17, 2014
Comments: