Skip to content

Instantly share code, notes, and snippets.

@PatrickJS
Last active December 17, 2015 17:48
Show Gist options
  • Save PatrickJS/5648228 to your computer and use it in GitHub Desktop.
Save PatrickJS/5648228 to your computer and use it in GitHub Desktop.
FizzBuzz
1.upto(100){|i|puts"FizzBuzz#{i}"[i%3<1?0:i%5<1?4:8,i%15<1?8:4]}
=begin
1.upto(100) do |num|
puts"FizzBuzz#{num}"[ num%3<1 ? 0 : num%5<1 ? 4 : 8, num%15<1 ? 8 : 4 ]
end
=end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment