Skip to content

Latest commit

 

History

History
5 lines (3 loc) · 569 Bytes

File metadata and controls

5 lines (3 loc) · 569 Bytes

FizzBuzz

Fizz Buzz is traditionally a word game for kids to teach them about division, in which players count incrementally. replacing any numbers divisible by three with the words "fizz" and numbers divisible by five replaced with "Buzz". Any number that is divisible by both three and five and replaced with "Fizz Buzz".

In the land of software engineering, it is an infamous coding interview question that, suprisedly filters out about 99.5% of applicants. There are several ways to skin a cat, so we will explore different approaches to solve this problem.