I have two very large lists and to loop through it once takes at least a second and I need to do it 200,000 times. What's the fastest way to remove duplicates in two lists to form one?
|
1
|
|||
|
|
|
This is the fastest way I can think of:
Slight update: As jcd points out, depending on your application, you probably don't need to convert the result back to a list. Since a set is iterable by itself, you might be able to just use it directly:
Beware though that any solution involving the use of |
||||||||||
|
|
|
I'd recommend something like this:
This eliminates the problem of creating a monster list of the concatenation of the first two. Depending on what you're doing with the output, don't bother to convert back to a list. If ordering is important, you might need some sort of decorate/sort/undecorate shenanigans around this. |
||||||||
|
|
|
As Daniel states, a set cannot contain duplicate entries - so concatenate the lists:
Then convert the new list to a set:
Then back to a list:
|
||||
|
|
|
That's how I'd do it. I am not so sure about performance, though, but it is certainly better, than doing it by hand. |
||
|
