Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
1-liner: split conditions into list of lists solution in Creative category for Fizz Buzz by Stensen
checkio = lambda n: [[str(n), 'Fizz'], ['Buzz', 'Fizz Buzz']][n%5==0][n%3==0]
Sept. 27, 2020