Skip to content

Instantly share code, notes, and snippets.

@azami
Created October 26, 2013 20:38
Show Gist options
  • Save azami/7174276 to your computer and use it in GitHub Desktop.
Save azami/7174276 to your computer and use it in GitHub Desktop.
fizzbuzz
fizzbuzz = lambda num: ('fizz' if not num % 3 else '') + ('buzz' if not num % 5 else '')
@azami
Copy link
Author

azami commented Oct 26, 2013

もっと簡単にかける気がする。

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment