Skip to content

Instantly share code, notes, and snippets.

@negamorgan
Created April 30, 2014 20:17
Show Gist options
  • Save negamorgan/76db1b5d9a9c48d2440d to your computer and use it in GitHub Desktop.
Save negamorgan/76db1b5d9a9c48d2440d to your computer and use it in GitHub Desktop.
fizzbuzz.rb
def fizzbuzz(n)
1.upto(n).map do |num|
response = ""
response << "Fizz" if num % 3 == 0
response << "Buzz" if num % 5 == 0
response.empty? ? num : response
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment