Skip to content

afrihost/fizzbuzz

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

FizzBuzz Code Kata

Code Kata

A code kata is an exercise in programming which helps a programmer hone their skills through practice and repetition.

https://en.wikipedia.org/wiki/Kata_(programming)

TDD

Test-driven development (TDD) is a software development process that relies on the repetition of a very short development cycle: first the developer writes an (initially failing) automated test case that defines a desired improvement or new function, then produces the minimum amount of code to pass that test, and finally refactors the new code to acceptable standards.

https://en.wikipedia.org/wiki/Test-driven_development

FizzBuzz

Originally a children's game created to practise multiplication and division, FizzBuzz is solved by running through integers from 1 to 100. For multiples of three (3), ‘Fizz’ is displayed, for multiples of five (5), ‘Buzz’ is displayed and for multiples of both three (3) and five (5), ‘FizzBuzz’ is displayed. Anything that is not a multiple of either three (3) or five (5) is displayed as the integer.

1
2
Fizz
4
Buzz
...
14
FizzBuzz
...

About

FizzBuzz Code Kata

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 2

  •  
  •  

Languages