Let's say I have a list like this:
list = [["A",0], ["B",1], ["C",0], ["D",2], ["E",2]]
How can I most elegantly group this to get this list output in Python:
list = [["A", "C"], ["B"], ["D", "E"]]
So the values are grouped by the secound value but the order is preserved...