I have a list of list like this:
l = [[0, 1, 2], [3, 4, 5], [6, 7, 8]]
and I want to check whether one of the lists in the list of lists have say integer 3 and 5 in the same array. So in my example here, l[1]
has both integers 3 and 5. How would I go about finding that?