For example
list_of_specific_element = [2,13]
list = [[1, 0], [2, 1], [2, 3], [13, 12], [13, 14], [15, 13]]
I want the sublist including any value inside the list of specific element be removed from the list.
So the element [2,1],[2,3],[13,12],[13,14] should be removed from the list.
the final output list should be[[1,0],[15,13]]
[15, 13]remain? It does contain a13.