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 are a little bit wrong. Assert.AreEqual() takes the expected value as the first parameter and the actual value as the second.
public static void AreEqual(object expected, object actual);
But in the test cases this is mixed up:
Assert.AreEqual(Kata.CountOfHeads(2, 1, 1), new BigInteger(2));
Assert.AreEqual(Kata.CountOfHeads(5, 10, 3), new BigInteger(92));
This comment is hidden because it contains spoiler information about the solution