Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
One-liner solution in Creative category for Fizz Buzz by suic
checkio = lambda n: " ".join(((not n % 3) * "Fizz", (not n % 5) * "Buzz")).strip() or str(n)
Nov. 29, 2014
Comments: