Skip to content

Instantly share code, notes, and snippets.

@laat
Created September 26, 2013 10:41
Show Gist options
  • Save laat/6712521 to your computer and use it in GitHub Desktop.
Save laat/6712521 to your computer and use it in GitHub Desktop.
fizzbuzz
import sys
map(lambda x: sys.stdout.write( x + "\n"), ["fizzbuzz" if not x % 15 else ("fizz" if not x % 3 else ("buzz" if not x % 5 else str(x))) for x in range(1, 101)])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment