Last active
August 29, 2015 13:58
-
-
Save mrk21/10019445 to your computer and use it in GitHub Desktop.
Rubyでワンライナー、剰余なしFizzBuzz
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
p (1..100).zip([*[nil]*2,:Fizz]*33,[*[nil]*4,:Buzz]*20,[*[nil]*14,:FizzBuzz]*6).map{|v|v.compact[-1]} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment