I have this list ["A","B","C","D"]
and this other [["B","C"],["A","C"],["A","B","D"],["C"]]
and I want to convert it to this [("A","B"),("A","C"),("B","A"),("B","C"),("C","A"),("C","B"),("C","D"),("D","C")]
for each element of the first list creates a tuple with the first element of the second list is to say "A" with ["B "," C "]