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.
I ran into the same issue! I belive that the intersection operator does not work because the intersection does not include elements that appear in only one of the key lists.
My solution was to create two new variables - k1 and k2, which were sets of the key lists of c1 and c2 - and use the union of the the two sets.
Therefore, my replacement was k1.union(k2), which creates a new set with elements from both key sets. Note: union is a built-in function that only works for sets.
I hope this is helpful!
why
respect for the dedication