The following is a TDD Kata- an exercise in coding, refactoring and test-first, that you should apply daily for at least 15 minutes .
Create a simple String calculator with a method signature:
βββββββββββββββ
int Add(string numbers)
βββββββββββββββ
The method can take up to two numbers, separated by commas, and will return their sum.
for example ββ or β1β or β1,2β as inputs.
(for an empty string it will return 0)
ββββββ
- Start with the simplest test case of an empty string and move to one and two numbers
- Remember to solve things as simply as possible so that you force yourself to write tests you did not think about
- Remember to refactor after each passing test
βββββββββββββββββββββββββββββββ
Allow the Add method to handle an unknown amount of numbers
ββββββββββββββββββββββββββββββββ
Allow the Add method to handle new lines between numbers (instead of commas).
the following input is ok: β1\n2,3β (will equal 6)
the following input is NOT ok: β1,\nβ (not need to prove it - just clarifying)
ββββββββββββββββββββββββββββββ-
Support different delimiters
to change a delimiter, the beginning of the string will contain a separate line that looks like this: β//[delimiter]\n[numbersβ¦]β for example β//;\n1;2β should return three where the default delimiter is β;β .
the first line is optional. all existing scenarios should still be supported
ββββββββββββββββββββββββββββββββ
Calling Add with a negative number will throw an exception βnegatives not allowedβ - and the negative that was passed.
if there are multiple negatives, show all of them in the exception message.
ββββββββββββββββββββββββββββββββ
STOP HERE if you are a beginner. Continue if you can finish the steps so far in less than 30 minutes.
ββββββββββββββββββββββββββββββββ
Numbers bigger than 1000 should be ignored, so adding 2 + 1001 = 2
ββββββββββββββββββββββββββββββββ
Delimiters can be of any length with the following format: β//[delimiter]\nβ for example: β//[]\n12***3β should return 6
ββββββββββββββββββββββββββββββββ
Allow multiple delimiters like this: β//[delim1][delim2]\nβ for example β//[][%]\n12%3β should return 6.
ββββββββββββββββββββββββββββββββ
make sure you can also handle multiple delimiters with length longer than one char