Skip to content

pythonkc/pykc_fizz_buzz

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 

Repository files navigation

#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.

About

FizzBuzz exercise for PythonKC

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages