Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
String arithmetic solution in Creative category for Fizz Buzz by nickie
checkio=lambda n:("Fizz "*(1-n%3)+"Buzz "*(1-n%5))[:-1]or str(n)
Feb. 20, 2014
Comments: