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.
LMAO
Really short. Is it easy to understand to whoever could get this for maintenance, in production?
Real ninja :D
Very readable and simple. I like it.
this guy studied functional programming so much that he actually can't write simple things anymore.
This comment is hidden because it contains spoiler information about the solution
This is not a performatic solution, since you will have to go through all sentence's element each time you get a new letter. It is a costly operation.
The best thing would be to transfrom 'sentence' into a hashmap, so that you could look for the letters presence in a o(1) way.