Skip to content

Instantly share code, notes, and snippets.

@raphink
Created September 21, 2015 06:36
Show Gist options
  • Save raphink/ee5cf53e5f30eb1e8d1c to your computer and use it in GitHub Desktop.
Save raphink/ee5cf53e5f30eb1e8d1c to your computer and use it in GitHub Desktop.
(1..100).each do |i|
fizz = (i % 3 == 0) ? 'Fizz' : ''
buzz = (i % 5 == 0) ? 'Buzz' : ''
num = (i % 3 == 0 || i % 5 == 0) ? '' : i
puts ("#{num}#{fizz}#{buzz}")
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment