Is there a way to remove duplicate sublists from a list of lists, even if they are not the same ordering?
So could I do something like make:
x = [[1,2],[3,4],[5,6],[2,1],[7,8]]
into
x = [[1,2],[3,4],[5,6],[7,8]]
Is there an itertools function or something with a for loop?
Thanks!
this will preserve the order of list and sublists, with possible duplicates in sublists:
if
then
y
will be: