I want to take two lists and find the values that appear in both.
a = [1, 2, 3, 4, 5]
b = [9, 8, 7, 6, 5]
returnMatches(a, b)
would return [5], for instance.
|
|
Not the most efficient one, but by far the most obvious way to do it is:
if order is significant you can do it with list comprehensions like this:
(only works for equal-sized lists, which order-significance implies). |
|||||||||
|
|
Use set.intersection(..).
|
|||||||||||||
|
|
I prefer the set based answers, but here's one that works anyway
|
|||
|
|
|
A quick performance test* showing @lutz's solution is the best:
These are the results on my machine:
Obviously, any artificial performance test should be taken with a grain of salt, but since the |
|||
|
|
|
The easiest way to do that is to use sets:
|
|||
|
|
|
Do you want duplicates? If not maybe you should use sets instead:
|
|||||
|
|
||||
|
|
|
Also you can try this,by keeping common elements in a new list.
|
|||
|
|
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.