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.
if a and b are product types (a1&a2 and b1&b2) then
a1 must be bindable to b1,
a2 to b2 and so on..
remember:subtypes may have more than 2 types or may be different, so check for length
I guess that you've modified the input pattern like in mixbonacci.
Actually, the reference solution and the tests were correct. The problem was that your solution mutated the input pattern (which isn't a good practice in general). I've modified the tests to enable this type of solutions.
Regards,
suic