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.
That makes sense, thank you so much! I thought I was messing with a type error, which threw me off. That makes sense why
Distinct()
won't work, because you can have the same item in the list more than once, it just has to be seperated by something else first. Thanks again!That's not really a type mismatch, it just looks that way. The real error message is the
Values differ at index [4]
underneath the type mismatch line.Distinct()
won't work, though, because not all elements in the output will be unique, look at the examples again.This comment is hidden because it contains spoiler information about the solution