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.
Some math:
There are 88 entries in this list.
88 * 64 bits = 5,632 bits.
5,632 bits / 8 bits per byte = 704 Bytes.
This comment is hidden because it contains spoiler information about the solution
Found what happened, nevermind.
So, I can't pass the fixed tests (and only the fixed tests, I passed on everything else) in the full suite. The only error I get is this:
Expected: equal to ""
Actual: "
Even after implementing this line right before returning:
res.erase(std::remove(res.begin(), res.end(), ' '), res.end());
which removes all spaces, I get the same error.
This is for C++, and I have no idea how I would end up with a singular double-quotation mark, as strings are represented with 2 double-quotation marks.
Vague error message, could not complete Kata.