问题 The following list has duplicated sublists. However, they are in different order: l1 = [['The', 'quick', 'brown', 'fox'], ['hi', 'there'], ['jumps', 'over', 'the', 'lazy', 'dog'], ['there', 'hi'], ['jumps', 'dog', 'over','lazy', 'the']] How can I remove them in order to get: l1 = [['The', 'quick', 'brown', 'fox'], ['hi', 'there'], ['jumps', 'over', 'the', 'lazy', 'dog']] I tried to: [list(i) for i in set(map(tuple, l1))] Nevertheless, I do not know if this is the fastest way of doing it for