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.
Ah, I see..
I Thought that all A_n should be mappable to all B_m (not the same index)
Maybe I'm reading the rules wrong, but I pass all of the fixed tests, but a lot of the random tests fail (and I cannot see why, when checking them manually)
How does this random test makes sense?
If both A and B are product types, all A's should be mappable to all B's? (which they are)
The random tests in Python seem broken.
Sometimes they pass, and sometimes they are all over the place...
The Python random tests seem broken.
For instance for input
['pad', 'tri', 'tri', 'pel', 'fib', 'fib', 'tet'] 8
It says
[1, 0, 0, 0, 0, 1, 0, 0] should equal [0, 0, 0, 0, 1, 0, 1, 1]
Somehow the first number
pad(0)
is0
instead of1
??This comment is hidden because it contains spoiler information about the solution