https://github.com/fizzygalacticus/hw3
TDD Code Kata.
https://github.com/fizzygalacticus/hw3
Last synced: 18 days ago
JSON representation
TDD Code Kata.
- Host: GitHub
- URL: https://github.com/fizzygalacticus/hw3
- Owner: FizzyGalacticus
- Created: 2014-02-24T20:59:10.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2014-02-26T21:55:59.000Z (over 12 years ago)
- Last Synced: 2025-01-06T10:46:58.001Z (over 1 year ago)
- Language: C++
- Homepage:
- Size: 188 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
HW3
===
TDD Code Kata for HW3.
======================
The first Kata practice: FizzBuzz - A function
that prints the integers from 1 to 100, but
for multiples of three print "Fizz" instead
of the number and for the multiples of five
print "Buzz". For numbers which are multiples
of both three and five print "FizzBuzz".
The first Kata practice: String Calculator -
A function that takes a string of up to
three numbers and returns their sum. If the
string is empty, it will return 0.