I have a list similar to this:
one
two
three
one
four
three
two
five
three
four
two
I need to just output non duplicates like this (order does not matter):
one
two
three
four
five
Is there a way to do this? or should I just store this list in a database and run a SELECT with distinct?
one
two
three
one
four
three
two
five
three
four
two
I need to just output non duplicates like this (order does not matter):
one
two
three
four
five
Is there a way to do this? or should I just store this list in a database and run a SELECT with distinct?