Skip to content

Instantly share code, notes, and snippets.

@opheliasdaisies
Created November 15, 2013 05:30
Show Gist options
  • Save opheliasdaisies/7479578 to your computer and use it in GitHub Desktop.
Save opheliasdaisies/7479578 to your computer and use it in GitHub Desktop.
Expansion of the one-line FizzBuzz
(1..100).map do |i|
fb_a = [["Fizz"][i % 3], ["Buzz"][i % 5]]
fb = fb_a.compact.join
if fb.empty?
puts i
else
puts fb
end
end
@reconbot
Copy link

you can mark this file as a ruby file and it will get syntax highlighting =)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment