Skip to content

Instantly share code, notes, and snippets.

@moserrya
Created January 30, 2013 07:14
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 moserrya/4671370 to your computer and use it in GitHub Desktop.
Save moserrya/4671370 to your computer and use it in GitHub Desktop.
best fizzbuzz ever
(1..100).map {|i| (fb = [["Fizz"][i%3],["Buzz"][i%5]].compact.join).empty? ? i : fb}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment