Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
or lambda solution in Creative category for Fizz Buzz by suic
checkio = lambda n: (not n % 15) * "Fizz Buzz" or (not n % 3) * "Fizz" or (not n % 5) * "Buzz" or str(n)
Jan. 9, 2015
Comments: