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.
Could you please write again your explanation?
Original test was on this data:
"Sadus:cpms>orqn3zecwGvnznSgacs","MynwdKizfd$lvse+gnbaGydxyXzayp"
You should not count upper case letters.
Not a kata issue, the input can be an anything, you should return
True
only when the conditions are met. That test expectsFalse
. And the same test exists in other languages like javascript.unlimited-nested-lists version of this kata solution
From kata description:
"when its argument is an
array
that has the same nesting structures and same corresponding length of nestedarrays
as the firstarray
"So we have only arrays/nested arays. But in python tests I see
int
:same_structure_as([],1)
I think this test should be removed because it doesn't match task conditions.
Unfortunately, there are still not only lists. I found this test case:
same_structure_as([],1)
But in task description I see only arrays/nested arrays.
1
- is not an array.