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.
If you mean not related to an Assembler Interpreter based kata I beg to disagree.
Sorry, didn't expect to ruffle any feathers. It was just a suggestion to make an even harder kata.
Sorry if I didn't phrase the idea conveniently.
Cannot understand the explanation of what the problem is or what data do we actually receive to decode the string...
What are the contraints? What is the universe of possible triplet values?
C++: Wouldn't it be more educational for newer programmers to use a vector or even an array rather than individual arguments???
Excellent. Rather nasty parsing multiple spaces and the msg format itself.
Maybe a part III could be done adding, for example:
Really enjoyed it
Where can I find the meaning of the "Exit Code"? I've come across code 139 a few times with all test showing green (but solution is not accepted). Does it mean out of memory, segfault, some exception?
I would also suggest a search facility for the forum (if it's already implemented I couldn't find it). It would probably make it easier to find already answered questions.
My C++ solution is failing with the following status (it passes basic sample tests and is indicating "General Tests" in green as well:
Time: 2038 ms Passed: 1 Failed: 0 Exit Code: 139
and an error which reads:
test: ../../libcxx/include/string:1164:
void std::__1::__basic_string_common::__throw_length_error()
const: Assertion `!"basic_string length_error"' failed.
It would appear that either I'm trying to use negative length strings (already checked there's no chance) or that the maximum C++ string size has been exceeded.
Can someone enlighten me on the possible causes of the error?
I'd also appreciate if someone could point me to where I can find a reference to what Exit Code: 139 means.