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.
Good to know. Thanks!
It should be noted that
len(String)
counts the number of bytes in a string. In a real-world application you might want to use utf8.RuneCountInString.Source: https://stackoverflow.com/questions/12668681/how-to-get-the-number-of-characters-in-a-string
Just so you know, String#chars is way faster than String#split, and is all we need for this challenge!