How to remove mirrored pairs from the list?

Hello everybody. I was looking for the intersection of solids many walls in the drawing. As a result, I got a list of this kind. Containing a pair of Solids in direct and mirror image. Please tell me how can I exclude from the list of unnecessary couples to list remained after the pairs? Can I do this dynamo nodes without python scripts? Thank you

You could try to insert a List.Sort node in between…

2 Likes

You could use List.FirstItem @L2 or flatten the list of pairs and then connect it to List.UniqueItems.

1 Like

Thak you very much. It works.

I used your way too. Thank you very much