Skip to content

Instantly share code, notes, and snippets.

@Pym
Created June 19, 2013 11:16
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 Pym/5813552 to your computer and use it in GitHub Desktop.
Save Pym/5813552 to your computer and use it in GitHub Desktop.
puts (1..100).map { |i| i % 3 * i % 5 == 0 ? (i % 3 == 0 ? 'Fizz' : '') + (i % 5 == 0 ? 'Buzz' : '') : i.to_s }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment