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.
this is how i dealt with it:
https://www.codewars.com/kata/5389864ec72ce03383000484/discuss/python#6104a1cd704a9e00491fec7f
Whoops, the test is missed in python. I fixed it.
@isqua: Please include the following test where unique string is at the start of the array as in my case as if somebody uses reference string from array to compare the strings.
Most of the time people use 0th index as reference.
Test:
['foo', 'abc', 'acb', 'bac', 'bca', 'cab', 'cba' ]
Hey, I take it from your reply to another comment that's you've figure this out. Could you give me a hint? I'm using the following with string.maketrans() and still can't pass the ['Nopesville'] test.
"""$%&?<>{}[]+^~-_;:.,'"!#1234567890|/*`=()@£§´»«ºªç"""
As given in the instructions please filter out special chars(@#$% etc.) and numbers(0-9) from input and dictionary then use it for further operation.
I'm stuck with the last test while submitting .. Don't forget those special characters!: [] should equal ['Nopesville']
How can I fix this ? Since the author hasn't mentioned this in the description.