Skip to content

Instantly share code, notes, and snippets.

@a1ip
Created May 31, 2014 15:45
Show Gist options
  • Select an option

  • Save a1ip/76f62251884bf9abbe79 to your computer and use it in GitHub Desktop.

Select an option

Save a1ip/76f62251884bf9abbe79 to your computer and use it in GitHub Desktop.
Elegant Ruby FizzBuzz one-liner from http://rosettacode.org/
1.upto(100) { |i| puts "#{[:Fizz][i%3]}#{[:Buzz][i%5]}"[/.+/m] || i }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment