Skip to content

Instantly share code, notes, and snippets.

@smoil
Created November 21, 2011 19:51
Show Gist options
  • Save smoil/1383721 to your computer and use it in GitHub Desktop.
Save smoil/1383721 to your computer and use it in GitHub Desktop.
Ruby Golf Hole #1
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