Fastest way to uniqify a list in Python without preserving order? I saw many complicated solutions on Internet - could they be faster then simply:
list(set([a,b,c,a]))
?
|
Fastest way to uniqify a list in Python without preserving order? I saw many complicated solutions on Internet - could they be faster then simply:
? |
|||||||||||
|
Leave it in that form if possible. |
|||||||||
|
|
Going to a set only works for lists such that all their items are hashable -- so e.g. in your example if You can code a function to "uniquify" any list that uses the best available approach by trying each approach in order, with a |
|||
|
|
|
Tim Peters wrote a classic general cookbook recipe for this problem back in 2001 (before sets were introduced). Comments by Alex Martelli, Raymond Hettinger et alia are informative and include updating to use sets etc. |
|||
|
|
|
Check out this post with many different results. What you proposed above seems to be one of the fastest (and simplest ones) |
|||
|
|