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.
Writing readable code is important if you want to be able to debug it!
Your code breaks, because you are modifying the array you are iterating over, which is generally a bad practice.
You should also not use the ternary operator to perform operations or nest ternary operators, as it makes your code very hard to read.
This comment is hidden because it contains spoiler information about the solution
Use code blocks when posting blocks of code.
This comment is hidden because it contains spoiler information about the solution