Skip to content

Instantly share code, notes, and snippets.

@ainame
Created October 19, 2011 06:13
Show Gist options
  • Select an option

  • Save ainame/1297587 to your computer and use it in GitHub Desktop.

Select an option

Save ainame/1297587 to your computer and use it in GitHub Desktop.
fizzbuzz
ruby -e '(1..100).to_a.map{|i|i%15<1?"fizzbuzz":i}.map{|i|i%5==0?"fizz":i}.map{|i|i%3==0?"buzz":i}.tap{|i|puts i}'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment