I have a list of String
[A,B]
And I have this tuple
[("A","B"),("A","C"),("B","A"),("B","C"),("C","A"),("C","B"),("C","D"),("D","C")]
I want to delete the items in the list from the list [A,B]
ie get the next result
[("C","D"),("D","C")]