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.
this seems very O(n) to me. I think we should be doing this in O(logn)
The char datatype can be treated as its unicode equivalent without typecasting or converting. So it's is evaluating the chars based on their unicode equivalents. If you're not familiar with Unicode you definetly need to research it.
Wait im confused, this probably a dumb question but where do you access the alphabet in this?
Fill the provided
websites
array with the stringcodewars
1000 times.['codewars','codewars' .... all the way to 1000 entries]
In other words add the string
codewars
to the providedwebsites
array 1000 times.This comment is hidden because it contains spoiler information about the solution
Nice and easy...
As many top 'coding craftsman' already said, when your variable needs an explaining comment you did something wrong