Match number lists
Checks the commonality between two number lists.
Inputs
-
list 1
- The first list to match against.
-
list 2
- The second list to match against.
Outputs
-
list 1 matches
- The list of booleans signaling whether the value at a particular index in list 1 matches any value within list 2.
-
list 2 matches
- The list of booleans signaling whether the value at a particular index in list 2 matches any value within list 1.
Note(s)
-
This node returns two lists of booleans, one for each input list (same length) - items are true if the number at their index is found in the other list.
-
Other names for this node include: MatchNumberLists.