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.
None of those cases you mentioned are tested because they aren't valid. Unless some translation has them, please, mention which language you're talking about.
well since you must have a way to determine the start and the end of each word, you usually use the String.Split Method anyway to split on the whitespaces. That method returns an array of strings, so you can access every word seperated. Since every string is a CharArray in c#, you can then access an index of each word. That should solve your problems
Yeah I had a problem with that