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.
I think that you misunderstood how the * command should work. The language specification states that the * command should "print out the number at the pointer (without a space)" -- that is, the number at the tape should be concatenated as a string. On your implementation, you're adding the numbers. For example: the '++++++++++^^^^^^^--^^' test case result should be "41" instead of 5.
LOL WTF
It doesn't work. Test case seems to be broken.
Two purple katas solved today and I got only 1 honor for each of them =(
Resubmitted the kata with random test cases.
The Kata Best Practices says that "Every new kata should ideally teach something different". This kata was designed as an introductory level exercise to teach about some key aspects of the Ruby/Crystal languages (specifically: function syntax, default parameters, the unless keyword, conditional suffixes and conditional expressions). They might use the same topic but I feel that they're fundamentally different.
Do you have a test case? If you didn't add a test case it'll give an error (it has to be on the "Test Cases" tab too, not on "Example Test Cases").
That was fun, well done!
The instructions say the parameters are within a specific range, but the tests are not abiding by those limits. We shouldn't need to sanitize test input, specially when the instructions tell us which input to expect.