Skip to content

Instantly share code, notes, and snippets.

@hauntedhost
Last active October 13, 2015 22:28
Show Gist options
  • Save hauntedhost/4265780 to your computer and use it in GitHub Desktop.
Save hauntedhost/4265780 to your computer and use it in GitHub Desktop.
Write a program that prints the numbers from 1 to 100. But for multiples of three print "Fizz" instead of the number and for the multiples of five print "Buzz". For numbers which are multiples of both three and five print "FizzBuzz".
def fizz_buzz(rounds)
1.upto(rounds) do |num|
phrase = { fizz: 3, buzz: 5 }.select { |key, m| (num % m).zero? }.keys.join
puts phrase.empty? ? num : phrase
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment