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)
-
Each output list matches the length of its corresponding input; a value is
truewhen that number appears anywhere in the other list. -
Other names for this node include: MatchNumberLists.