Skip to content

Instantly share code, notes, and snippets.

@codeimpossible
Created August 20, 2012 16:47
Show Gist options
  • Save codeimpossible/3405711 to your computer and use it in GitHub Desktop.
Save codeimpossible/3405711 to your computer and use it in GitHub Desktop.
FizzBuzz
(1..100).each do |i|
out = i%3 != 0 && i%5 != 0 ? i : ""
puts "#{out}#{ 'FIZZ' if i%3 == 0 }#{ 'BUZZ' if i%5 == 0 }"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment