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.
It is said:
"We will return an array of subarrays or of tuples (in C an array of Pair) or a string.".
Did you read that ?
Furtherrmore you have the following "Sample Tests":
[Test]
public void Test01() {
Assert.AreEqual("[[1, 1], [42, 2500], [246, 84100]]", SumSquaredDivisors.listSquared(1, 250));
}
[Test]
public void Test02() {
Assert.AreEqual("[[42, 2500], [246, 84100]]", SumSquaredDivisors.listSquared(42, 250));
}
[Test]
public void Test03() {
Assert.AreEqual("[[287, 84100]]", SumSquaredDivisors.listSquared(250, 500));
}
}