Skip to content

“FizzBuzz” is a sometimes used as a coding exercise during interviews to check logical skills of developers.

License

Notifications You must be signed in to change notification settings

jbcirs/FizzBuzz

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

FizzBuzz Problem

“FizzBuzz” is a sometimes used as a coding exercise during interviews to check logical skills of developers.

Problem

It goes like this:

Write a program that prints the numbers 1-100.
If the number is divisible by 3, print "fizz" instead of the number.
If the number is divisible by 5, print "buzz" instead of the number.
If the number is divisible by both 3 and 5, print "fizzbuzz" instead of the number.

My Take

There are a ton of ways to solve fizzbuzz problem, with many different programing languages. I took the most abstract and reusable approach in C#.

About

“FizzBuzz” is a sometimes used as a coding exercise during interviews to check logical skills of developers.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages