Skip to content

Instantly share code, notes, and snippets.

@cganterh
Created February 28, 2018 01:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cganterh/02b481b69800b0098737f80ba780f813 to your computer and use it in GitHub Desktop.
Save cganterh/02b481b69800b0098737f80ba780f813 to your computer and use it in GitHub Desktop.
Python FuzzBuzz oneliner
print(*(''.join(w for m, w in [(3, 'Fizz'), (5, 'Buzz')] if not n%m) or n for n in range(1,101)), sep='\n')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment