Last active
October 13, 2015 22:28
-
-
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".
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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