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 don't see this as the biggest flaw here - the conversion to a char and then to an int and using sum is way to complicated. Just use sumBy directly on the String (no need to get the CharArray at all!) and define the summing value to be Character.getNumericValueOf(c). Done.
This is not so "clever" as some people pointed out. :-) And it's not a best practice to do it with more steps than necessary.