I would like to ask how to remove duplicates in this type of list
ppoint=[[1,2],[1,2],[3,4],[5,6],[7,3],[3,4],[5,6]]
i tried set() but still makes an error of: unhashable list
ppoint=[[1,2],[1,2],[3,4],[5,6],[7,3],[3,4],[5,6]]
fpoint=list(set(ppoint))
print (fpoint)
i want to get
[[1,2],[3,4],[5,6],[7,3]
i think set() works only on single value idexes, is there any alternative way for this?