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.
The exercise talks of "characters" ("if that character appears only once") but treats the characters 'P' and 'p' as if they were the same. Badly written details.
Confusing instructions. It says
"-[: if the byte at the data pointer is zero, then instead of moving the instruction pointer forward to the next command, jump it forward to the command after the matching ] command."
and
"-]: if the byte at the data pointer is nonzero, then instead of moving the instruction pointer forward to the next command, jump it back to the command after the matching [ command."
but really, you have to move the instruction pointer to the matching "["/"]" command. Had to use a debugger to realize this.