Skip to content

Instantly share code, notes, and snippets.

@nixsticks
Created November 15, 2013 01:29
Show Gist options
  • Save nixsticks/7477654 to your computer and use it in GitHub Desktop.
Save nixsticks/7477654 to your computer and use it in GitHub Desktop.
fizzbuzzes = (1..100).to_a.map do |i|
if i % 15 == 0 then "fizzbuzz"
elsif i % 3 == 0 then "fizz"
elsif i % 5 == 0 then "buzz"
else i
end
end
puts fizzbuzzes
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment