Skip to content

Instantly share code, notes, and snippets.

@dlresende
Created February 4, 2015 09:25
Show Gist options
  • Save dlresende/f306d8b19e7be7cc2bfd to your computer and use it in GitHub Desktop.
Save dlresende/f306d8b19e7be7cc2bfd to your computer and use it in GitHub Desktop.
Fizz Buzz Kata

Fizz Buzz Kata

  1. If the number is divisible by 3, should print "Fizz"
  2. If the number is divisible by 5, should print "Buzz"
  3. If the number is divisible by both 3 and 5, should print "Fizz Buzz"
  4. Otherwise, should print the number

Example: 1 2 Fizz 4 Buzz Fizz 7 8 Fizz Buzz 11 Fizz 13 14 Fizz Buzz ...

@dlresende
Copy link
Author

@jcleonard who are you ? :)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment