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.
Simply amazing.
That's much better!
This comment is hidden because it contains spoiler information about the solution
Yes, but it's generally viewed as bad practice because of namespace pollution (everything inside the
std
namespace gets inside the global namespace, and that leads to all sorts of problems), and I personally prefer to be explicit and just manually type the namespace.As an alternative that won't polute the global namespace, you can use
using std::something;
, it does the same thing, but only to the objects you specify.I'm not very experienced with c++, but I think that can be done with templates, or function overloads.
Clever
I tip my hat to you, that was very clever!
Ah, thanks for pointing it out, I changed it on a fork
Hmmm.. seems like you need to add how many points each value will add for the final score, for example, how much score 'eating' will add.
The description is not very clear on what you need to do.
Nice kata, I liked how creative it was
Fun Kata! Imo this should be 6 kyu