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.
Do you pass the challenge?
How did you deal with bug arrays?
Hi! Have the same issue, but didn't understand what does it mean. Could you explain me briefly, please?
Great Kata! Thank you!
For those, who have difficulties passing tests, just be careful and attentive to the second condition of Kata:
It is too easy to miss the word "Single"
Good luck!
test.assert_equals(filter_list([1,2,'aasf','1','123',123]) - in this list one of the digits "1" - is a string, not a number. So it doesn't show in results ([1,2,123]) not because it is a duplicate, but because it's a string. So you should check in your code if you have any "string" numbers and exclude them too.
You are welcome)