The “List Union” chip takes in any amount of lists and outputs a single list without any duplicate items. Is there a chip like this that only outputs the duplicate items, instead of removing them? If not, is there a practical way I can make one?
List intersect will create a list containing only the items which are in all lists.
2 Likes
I’ll see if that works for what I’m trying to do. I’ll let you know if it works!
1 Like
I’m not sure I could find any way to manipulate a list with using only value chips, but I did find a way to do this with a for each loop!
Here’s the circuit graph, this should cycle through your given list and only output the duplicate items.
You can use a “List Distinct” chip to remove the duplicate items in the new list:
Hope this helps!
Thanks everyone!
1 Like