Intersect lists
The Intersect lists operator returns the intersection between elements of lists. The operator returns only elements that exist in all lists.
Example 103.
The output is c and e.
INTERSECT_LISTS(['a','b','c','e'],['c','d','e'],)
The Intersect lists operator returns the intersection between elements of lists. The operator returns only elements that exist in all lists.
The output is c and e.
INTERSECT_LISTS(['a','b','c','e'],['c','d','e'],)