TheAlgorithms / Ruby

All algorithms implemented in Ruby
MIT License
1.15k stars 289 forks source link

Fizz Buzz: Hash Table approach #175

Closed vbrazo closed 2 years ago

vbrazo commented 3 years ago

Write a program that outputs the string representation of numbers from 1 to n. But for multiples of three, it should output “Fizz” instead of the number, and for the multiples of five output “Buzz”. For numbers which are multiples of both three and five output “FizzBuzz”.

ps: other approaches can be found here.