Skip to content

Instantly share code, notes, and snippets.

@freeformz
Created February 1, 2012 20:14
Show Gist options
  • Save freeformz/1719056 to your computer and use it in GitHub Desktop.
Save freeformz/1719056 to your computer and use it in GitHub Desktop.
FizzBuzz
Looking for creative FizzBuzziness.....
One per file, all languages accepted.
# Here's a pretty basic one, no interesting here really.
1.upto(100) { |i| puts (i % 3) == 0 ? (i % 5) == 0 ? "FizzBuzz" : "Fizz" : (i % 5) == 0 ? "Buzz" : i }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment