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.
Initially all chars are converted toUpperCase:
.map(c -> c > 90 ? (char) ((c % 91) + 65) : c)
map(i -> (count++ % 2) == 0 ? i.toUpperCase() : i.toLowerCase())
WOW, brilliant! I'm highly impressed by this ootb solution, accompanied by detailed comments!
I don't see correlation betwwen the two repeating values in both strings. IMHO can be different number each and will still find a "match"
Converting the whole string to upper case during each iteration is extremely ineffective!