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.
there is no reason for the "special rule" to be buried at the bottom of the description, after the I/O and examples. it makes it harder to see all rules at a glance; it forces one to have to scroll back to the beginning of the description
since Python 3.9, type hints such as
List
,Tuple
orSet
are deprecated in favor of using types directly, e.g.list[str]
ortuple[int, int]
. the initial code should be rewritten in consequenceI accidently created a solution that does not always pass the random tests.
https://www.codewars.com/kata/reviews/6255e73cea4e7f004a79ed68/groups/66b37a14f8be82e8ded15341
'REPEATABILITIES', 'ALLOTETRAPLOIDS'
both examples match the hint
('SACRAMENTARIANS', '-Y-YY-Y-Y--Y--G')
Why?
Hello, my code is passing all the test except for one and i'm having trouble figuring out why :
It seems that
'ZINJANTHROPUSES' should not be a possible result for [('SACRAMENTARIANS', '-Y-YY-Y-Y--Y--G')]
I can't figure why this is not a possible result
edit : the Error message is not consistant, I was able to push my solution and resolve the kata, this is very confusing.