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.
re-raised there
re-raised there with more details
the handling of acronyms / consecutive capital letters such as
"requestHTTP"
is not clear: should it be"request H T T P"
or"request HTTP"
? the description should either specify it, or rule out 1-letter wordsyes there is a mistake i missed, the bound of your
for
loop is incorrect, it refers to the length of the output, not of the input, so you loop out of boundsoh, got it now. thank you very much!
(ok, i corrected it like you said but still crashed in the same way.)
is____()
functions from<ctype.h>
. the only guarantee is that they return a nonzero value if the character passes the predicate, and0
otherwise. The nonzero value could be-42
,666
,1
etc.; it's an implementation detail that should not be relied upon. So: should be:Everything worked with the CoreTests, but on the Random Tests it crashed: "Caught unexpected signal: 6". I printed both my input & output strings, and the output for the Random Tests is 100% correct. Don't really know what to do. (The language is C)