#lists ig
1 messages · Page 1 of 1 (latest)
Uhh dunno how explain me show in room if log
i can’t sorry :/
Could do an equals
yea but u can’t do an equals because if list one didn’t have the 6 or the 7 i would want it to return true
U could split up the numbers and run a check individually
would you wanna check or remove any duplicates?
There’s a new chip that removes any duplicates in a list
List Except outputs a new list of items List 1 has, that List 2/3/4/etc does not.
List Union concats all lists, but removes any duplicate values.
List Intersect outputs a list with values that all lists contain.
List Distinct removes any duplicate values from the lists.
====================
List Intersect (or List Except if you are comparing purely List 1 to every other input list) is the one you will one to use. By using this with your lists, check if the new list has no items using a List Get Count or by checking if it is Equals to an empty List Create. If the list has no items, then both lists have the exact same values inside but may or may not be in the same element order.