Imagine the list [[0, 1],[2, 3][4, 5]],
how can I get the index of the list [2,3] (which is supposed to be 1), by knowing the number 2. In code something like:
in a list of lists, find the index of the list where list[0] == 2.
This should return 1.