An open API service indexing awesome lists of open source software.

https://github.com/francomelandri/fizz-buzz-kata

KATA programming - FizzBuzz - Functional programming - Continuous learning
https://github.com/francomelandri/fizz-buzz-kata

Last synced: 6 months ago
JSON representation

KATA programming - FizzBuzz - Functional programming - Continuous learning

Awesome Lists containing this project

README

          

# Fizz Buzz KATA

Given an integer number as input

- Print **fizz** if the number is divisible by 3
- Print **buzz** if the number is divisible by 5
- Print **fizzbuzz** if the number is divisible by 3 and 5

Example (up to 15)
> 1, 2, fizz, 4, buzz, fizz, 7, 8, fizz, buzz, 11, fizz, 13, 14, fizzbuzz,

#References

kata:
http://codekata.com/
http://codingdojo.org/KataCatalogue/

clean code:
https://www.amazon.com/Clean-Code-Handbook-Software-Craftsmanship/dp/0132350882

commit:
http://whatthecommit.com/