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.
Not a suggestion (As long as it solves the tasks within the time constraint, it is a valid solution)
Yes, absolutely true and it is preventing me from completing the Kata because of a null.
This comment is hidden because it contains spoiler information about the solution
I thought it was a kata issue, thank you for the tip
C#:
test structure are as follows
Assert.AreEqual(expected, Kata.TitleCase(sampleTitle, sampleMinorWords));
where Kata.TitleCase should contain 2 arguments (the original title and list of words to check in one string)
Test cases in test 1 goes fine as expected/sampleTitle/sampleMinorWords are present
While test 2 and test 3 don't have any sampleTitle, only expected and words list
You have to put it like string.Join(''), as in some other methods you have to write System.X instead of X. Annoying and common on codewars.
This comment is hidden because it contains spoiler information about the solution