I already know how to remove all duplicates from List by using set:
ls = list(set(ls))
What i want to know is there any way to remove all duplicates except one element instances, as efficient as the method above?
ls = [1, 2, 3, 3, 3, 4, 4]
#i want to keep 4, no matter if it is duplicate but want to remove duplicates from rest
so the output should be:
ls = [1, 2, 3, 4, 4]
One possible solution is to iterate over element and use conditional check. I am looking for the best solution.