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.
We can't see your code and the tests are fine. Please read this fully before creating a kata issue: https://docs.codewars.com/training/troubleshooting
unique_in_order('AAAABBBCCDAABBB') == ['A', 'B', 'C', 'D', 'A', 'B']
You're not understanding what to do.
Please write in english and stop raising bogus issues. See https://docs.codewars.com/training/troubleshooting#post-discourse.
Olá Luca, o seu código apresenta um problema ao assumir que a variável 'b' possui apenas um elemento. Na verdade, 'b' pode conter múltiplos valores. Consoante você tem no seu código, você acessa apenas o primeiro índice da variável 'b'.
Not a kata issue, you are removing and checking zero equality at the same time, which can cause some values to be skipped.
Read this: https://docs.codewars.com/training/troubleshooting#expected-the-same
Not a kata issue.
Remove this line:
From your code, indent
x = 1
properly.This comment is hidden because it contains spoiler information about the solution