Twilio Interview Question

FizzBuzz

Interview Answers

Anonymous

Aug 7, 2015

I wrote FizzBuzz

1

Anonymous

Mar 18, 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.