You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add an expression that returns the values in the original list that are not seen in the second list
Example, given list1={1,2,3} and list2={3,4,5} the expression list1.diff(list2) would return {1,2}. (list1.complement(list2) works as well)