Skip to content

Latest commit

 

History

History
8 lines (6 loc) · 267 Bytes

README.md

File metadata and controls

8 lines (6 loc) · 267 Bytes

Kata FizzBuzz

For a given natural number greater than zero, you must return :

  • Fizz if the number is divisible by 3
  • Buzz if the number is divisible by 5
  • FizzBuzz if the number is divisible by 3 and by 5
  • The same number if no other requirement is fullfilled