Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
3rd FizzBuzz_51 solution in Uncategorized category for Fizz Buzz by turtle51
def checkio(n):
return ([str(n),'Fizz', 'Buzz','Fizz Buzz'][((n%5==0)*2 + (n%3==0)*1)])
Feb. 24, 2014
Comments: