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.
@HenningNT
The C# tests are ok. Your code is wrong. See the last test, the area of a cube (6 sides) of side length 10, is not 100, it's 600.
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));
}
Language? Details?
Usually the kind of issue where a test case appears correct but isn't has to do with whitespace (spaces, tabs, newlines, etc).