Loading collection data...
Collections are a way for you to organize kata so that you can create your own training routines. Every collection you create is public and automatically sharable with other warriors. After you have added a few kata to a collection you and others can train on the kata contained within the collection.
Get started now by creating a new collection.
C# tests seem to be OK, but I think you misinterpret the rules. When you have three ones, you get 1000 points. Additionally, you get 100 points for every other one. This means that when there's
1,1,1,1,3
you get 1000 points + 100 points, and when there's1,1,3,4,6
you get 2x100 points.1 one: 100 points, 2 ones: 200 points, what's the problem? It's in the examples:
There is a problem with this kata, at least in C#. It is scoring incorrectly. I had to put a special exception for exactly two 1's adds 200 points in order to get all tests to pass.
There is a problem with this kata, at least in C#. It is scoring incorrectly. I had to put a special exception for exactly two 1's adds 200 points in order to get all tests to pass.