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.
I take my hat off.
Using CultureInfo.CurrentCulture.TextInfo.ToTitleCase is a good attempt to simplify capitalization, but it won’t fully work for Jaden Case in this context. ToTitleCase capitalizes the first letter of each word but does not affect subsequent letters. For example, ToTitleCase("hELLO wORLD") would result in "HELLO WORLD", which isn’t what Jaden Case requires. Jaden Case should only capitalize the first letter of each word and keep the rest in lowercase.
To fix this, you can convert the phrase to lowercase first, ensuring only the first letter of each word is capitalized:
CultureInfo.CurrentCulture.TextInfo.ToTitleCase(phrase.ToLower());
I agree with you, hermano. Bitwise multiplication is faster than modulo operation.
U`re a genius
Okay, this was cool
This comment is hidden because it contains spoiler information about the solution
This comment is hidden because it contains spoiler information about the solution
Would this not work with words like "of" or "the"?
very cool
Cool!
Good Job TIm
math way, best clever
Probably way more readable than the oneliner I wrote :)
I really need to learn LINQ
Hot knife through butter
Loading more items...