- Roman Numbers
- The String Calculator
- The Bowling Game
- The Bowling Game by Uncle Bob
- The Prime Factors by Uncle Bob
- FizzBuzz
- FizzBuzz Game
TDD is a good practice for doing Katas.
- choose the function to implement
- write simple test for it
- run the test to see it fails
- write the code just enough for passing the test
- run the test to see it passes
- refactor code
- repeat from 1