how to find unique sublist in list in python

Solutions on MaxInterview for how to find unique sublist in list in python by the best coders in the world

showing results for - "how to find unique sublist in list in python"
Frieda
19 Jul 2018
1In [22]: lst = [[1,2,3],[1,2],[1,2,3],[2,3],[4,5],[2,3],[2,4],[4,2]]
2
3In [23]: set(frozenset(item) for item in lst)
4Out[23]: 
5set([frozenset([2, 4]),
6     frozenset([1, 2]),
7     frozenset([2, 3]),
8     frozenset([1, 2, 3]),
9     frozenset([4, 5])])
Marcia
15 Feb 2016
1set(tuple(sorted(i)) for i in lst)