What is the best way to go about partitioning a list of tuples in python?
Currently I have a sorted list of tuples, by the second element (a value), and I want to find all values that are repeated at the beginning in an efficient manner.
say:
[ ("tearing", 3), ("me", 3), ("apart", 3), ("lisa", 3),
("denny", 0), ("mark",0) ]
Running it through the function would return
[("tearing", 3), ("me", 3), ("apart", 3), ("lisa", 3)].
But I am not sure how to go about this.