If I have a list like the following: 1, 1, 1, 2, 3, 4, 4, 5, 5, 6
.
I would like to somehow obtain the result of 2, 3, 6
. So that is, find the duplicate values, and not just remove the duplicates, but actually delete the values which were duplicate entirely (or rather, only return the values which weren't found to be duplicate).
Is there a way to do this in Notepad++/Excel or something else?