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.
The sample tests are wrong in c#, and if those are used in the "real" tests then it is impossible to complete in c#.
This test "worked for me":
[Test]
public void Test1()
{
Assert.AreEqual(new[] { 24, 48 }, Kata.Get_size(4, 2, 6));
Assert.AreEqual(new[] { 1, 1 }, Kata.Get_size(1, 1, 1));
Assert.AreEqual(new[] { 1, 2 }, Kata.Get_size(1, 2, 1));
Assert.AreEqual(new[] { 2, 4 }, Kata.Get_size(1, 2, 2));
Assert.AreEqual(new[] { 100, 1000 }, Kata.Get_size(10, 10, 10));
}