I am trying to figure out how I can return true if my list contains any items not in my blacklist. It might sound strange but I only want to return false if the list is made up entirely of item/s in my blacklist.
Here is what I mean...
blacklist = [one, two, three]
Here is what I would like to happen to the following...
one two three four = true because four is not in the blacklist
one = false because one is in the blacklist
one two three = false because all are in the blacklist
five = true because five is not in the blacklist
Hope that makes sense.