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 makoto_yamagata
checkio = lambda n: ' '.join(x[1] for x in [(3,'Fizz'),(5,'Buzz')] if not n%x[0]) or str(n)
July 21, 2015