Skip to content

Instantly share code, notes, and snippets.

@gofer
Created December 9, 2015 20:20
Show Gist options
  • Save gofer/e8e35f287ca6fca58341 to your computer and use it in GitHub Desktop.
Save gofer/e8e35f287ca6fca58341 to your computer and use it in GitHub Desktop.
FizzBuzz on Ruby(アホ)
(1..100).each{|i|puts ((a=([i]*2).zip([3,5]).map{|a,b|a%b}.map{|v|v==0})&&a+=[!a.reduce(:|)]).zip(["Fizz","Buzz",i.to_s]).map{|f,s|f ?s:""}.reduce(:+)}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment