Too True comparing list of lists

It’s probably in lacing or leveling.
I was expecting a list of 2 trues,
but instead, I’m getting a list of 5 trues or
when I do get a list of 2, they are both false.

I think it was cross product, that seems to work for now

Yeah, Longest lacing isn’t helping you here. List.Contains checks an entire list for a single item. The first list checks for the first item, the second list checks for the second item, and then, because you have Longest lacing, the second list continues to check for the rest of the items one by one.

This is one of those slightly odd ones because List.Contains is already expecting a list and an item but you’re really supplying a list of lists and a list of items.