Pregunta de entrevista de Twilio

FizzBuzz

Respuestas de entrevistas

Anónimo

7 de ago de 2015

I wrote FizzBuzz

1

Anónimo

18 de mar de 2016

Fizz is all numbers divisible by only 3 and Buzz is all numbers divisible by only 5, and FizzBuzz is all numbers divisible by both 3 and 5. so for a given range of numbers you need to print the range with Fizz for numbers divisible by 3, Buzz for numbers divisible by 5 and FizzBuzz for both.