Fastest way to uniqify a list in Python without preserving order? I saw many complicated solutions on the Internet - could they be faster than simply:
list(s
set([a, b, c, a])
Leave it in that form if possible.