Practice repo for implementing the classic FizzBuzz challenge with the TDD workflow.
FizzBuzz is one of the most famous coding exercises for beginners. It is a simple exercise but an excellent one to start learning the TDD flow with.
- Write a “fizzBuzz” method that accepts a number as input and returns it as a String
- For multiples of three return “Fizz” instead of the number
- For the multiples of five return “Buzz”
- For numbers that are multiples of both three and five return “FizzBuzz”.