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.
Yes, that way the original array that was passed in as a parameter is not modified.
This comment is hidden because it contains spoiler information about the solution
it crashes when you run it against the sample tests (button
TEST
), and passes when you run it against the full tests (buttonATTEMPT
). The sample and full tests are independent (they are in separate files).Trainer
page; they are only here so that you can get an idea of how your solution is called and which kind of inputs you can expect.usually, the sample tests are also copied to the full tests suite, but this is just a convention and authors can write tests differently. In this particular kata, the author of the C version did not do this: the sample tests call the user function with read-only string literals (which crashes this solution), but the full tests call it with mutable strings, so this solution can get away with removing
const
this solution casts away
const
ness, which is mind-bogglingly bad and should never be done. it does that to pass the string to thestrtok()
function, which mutates the string it receives as argument.You probably tried to call this solution on a read-only string. on most platforms, string literals are placed into the
.rodata
(Read-Only Data) section of a program, which is where the compiler stores compile-time constants. attempting to modifying a.rodata
object at runtime results in a segmentation fault (the OS crashes your program)wrong:
correct: