Skip to content

Instantly share code, notes, and snippets.

@shanemcd
Created November 30, 2012 18:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shanemcd/4177528 to your computer and use it in GitHub Desktop.
Save shanemcd/4177528 to your computer and use it in GitHub Desktop.
FizzBuzz
(1..100).to_a.map { |i|
if (i % 3 == 0 ) && (i % 5 == 0)
i = "fizzbuzz"
elsif i % 3 == 0
i = "fizz"
elsif i % 5 == 0
i = "buzz"
else
i = i
end
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment