Skip to content

Latest commit

 

History

History
15 lines (10 loc) · 406 Bytes

File metadata and controls

15 lines (10 loc) · 406 Bytes

Fizz Buzz Kata

This code kata helps engineers practice skills related to TDD.

The goal is to design a program to recreate the FizzBuzz numbers game.

Rules

For the integers 1 through 100 inclusive program should:

  • return Fizz for any multiple of 3
  • return Buzz for any multiple of 5
  • return FizzBuzz for any multiple of 3 & 5
  • return the integer that was input if none of the above are true