Skip to content

Instantly share code, notes, and snippets.

@masayukig
Created June 21, 2012 20:12
Show Gist options
  • Save masayukig/2968253 to your computer and use it in GitHub Desktop.
Save masayukig/2968253 to your computer and use it in GitHub Desktop.
Fizz Buzz in Ruby
1.upto(100).map{|i|puts"#{i%3!=0?'':'Fizz'}#{i%5!=0?'':'Buzz'}#{(i%3*i%5)==0?'':i}"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment