Topic was automatically imported from the old Question2Answer platform.
Asked By
Fenisto
I have a list of values. Let say: [1, 2, 2, 5, 5, 5, 7]
And I need to delete from it all reoccurring values. So that the result should be [1, 2, 5, 7]
How do I do that?