I would like to count the number of unique lists, inside a list of lists. For instance,
>>>list1 = [[1,2,3],[1,2,3],[1,2,2],[1,2,2]]
>>>how_many_different_lists(list1)
>>>2 #They are [1,2,3] and [1,2,2]
How can I make the how_many_different_lists function?