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.
While I do think that many of the issues people are reporting with this kata could be solved by reading it a bit more closely, I also think that the description for this kata leaves something to be desired. The ability to read insructions carefully and accurately parse them is an important skill in programming but I think the (description for this) kata is just poorly organized/written.
Perhaps:
I feel like I've been frequently seeing discussions like the one for this kata in this 8-6 kyu range. In the end everyone seems annoyed, including the author of the kata. I think a lot of this annoyance could be avoided by writing more explicit and clean descriptions. /rant
The mistake is that you're looking for individual digits, not whole numbers.
Although it can be gleaned from the examples, the description should state that consecutive integers are considered as one number.
E.g. you should extract and sum 20 + 5 from 'hello20world5'
I'm only about 5 years late here, but I think it's great. You walked through the examples in a clear fashion and
that helped me understand what I needed to do! Had a lot of fun solving this one.