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.
Closing because there is another issue on this with more info open for C (and C#).
yep you re right
The 255 character isn't in the sample tests for the C translation, so it does just spin. I think some of the actual tests might have the same issue.
In this test, you should have the char 255 at some point in the input.
Then 255+1 = 0, and it breaks the loop.
,+[-.,+]
Endless loop
In this one (which is in the basics tests), when we get 0 from ',' to announce the end of string, the '+' increase the 0 to 1, so it loop back and overflow.