how to remove duplicate elements in a list
From a list L = ([1,2,3,4],[3,5,6,7],[7,8,9,10],[1,2,3.4]) remove duplicate sets here [1,2,3,4] has occurred twice and put only one making L = ([1,2,3,4],[3,5,6,7],[7,8,9,10])
L is a tuple. For a list, replace the outer parens with square brackets.
Please change your tags. "urgentX" is more annoying than I am.