I have two non-unique lists of values, such as
["a", "b", "a", "c"]
and
["a", "b", "b", "f"]
I want to find which elements of the second list do not appear in the first.
I could code this by hand, but would prefer to use built-in functions. I can't figure out how because I keep bumping into the hashable / unhashable barrier.