Skip to content

Latest commit

 

History

History
7 lines (6 loc) · 441 Bytes

README.markdown

File metadata and controls

7 lines (6 loc) · 441 Bytes

#FizzBuzz


The FizzBuzz problem is often a feature of coding interviews. We will work on the simplest version.

##The problem


For a given list of integers, print the list of numbers. If a number is a multiple of three, print the word 'Fizz' instead of that number. If a number is a multiple of 5, print the word 'Buzz' instead of that number. If a number is a multiple of both three and five, print 'FizzBuzz' instead of that number.