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.
Still no fix to the "random tests start with spaces" issue for Python.
e.g. packet is " EHLVS QPUH KV ..." reports "0 should equal 42545".
Indeed, it does appear fixed now. Not sure what was going on, as I did not change any code and it now passes all tests.
should be fixed, I can't reproduce this issue thoo
This comment is hidden because it contains spoiler information about the solution
Description should be made more explicit, to clarify what is being asked. While it is possible to guess at what is meant by "separated by a random special character" by examining the test cases (at least in Python), all test cases use the same random character throughout the entire string. For example, the string "23;RPM;300;PSI;MODE;FORWARD" uses a semicolon as a random character. This suggests that the random special character will be consistent throughout the string, and the challenge is to identify the character and parse the string. However, the actual tests include strings where the special character changes, such as "CODE*SEVEN|FOURTY#THREE&HUNDRED" which uses four different separator symbols. This requires a completely different approach than the first assumption.
Description lacking. The only way to solve this one is to try to debug the random tests with respect to non-alphabetic characters.