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.
@KirinCupr: just a quick confirmation - you're completely right, the creator of the Kata has defined "input_str" as a constant here, so while we can read its value, we must not change/manipulate it! ... The C++ documentation says about the use of the keyword "const": "an object whose type is 'const-qualified', or a non-mutable subobject of a const object. Such object cannot be modified: attempt to do so directly is a compile-time error ..."
That's my style :) Depending on my mood, either - super terse code, or "overly readable". Fun to practice both ways!
+1 for calculating the average mean (unlike some higher ranked solutions) including "yourPoints" - as indicated in the instructions ...
Please use a spoiler flag when you post code (I've just put the flag on for you this time).
This comment is hidden because it contains spoiler information about the solution
nice exercise in creating your own methods (with suitable access modifiers etc.) - but regarding the kata at issue definitely an overkill ;-)