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.
@ZozoFouchtra thank you for the suggestion. Yes, it makes sense. I will add more explanation to make it clear that each row of the first table will need to be compared to each row of the second table and will add more test cases.
@LiamSorta thanks. Your additional description will make the task clearer to beginners like myself.
Shouldn't the description state that the
numbers
are always integers? Also, if thenumbers
contain same values (e.g.[1, 1, 2, 4]
), should the output have the duplicates as well (e.g.[1, 1, 2, 3, 4]
)? My current solution would fail in that case.