Created
November 21, 2011 19:51
-
-
Save smoil/1383721 to your computer and use it in GitHub Desktop.
Ruby Golf Hole #1
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
def fizzbuzz(n) | |
n%3<1&&f="Fizz";n%5<1?"#{f}Buzz":f||n.to_s | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment