If I have the list [68,31,93,35,10] (all the numbers will be different) and the list [93,0,22,10,99,33,21,9] (again, all the numbers will be different, but may overlap the other list), I need to be able to get exactly [68,31,93,35,10,0,22,99,33,21,9], where the second list is appended to the first list without duplicates. I also need to be able to get exactly [68,31,35] where the first list has all duplicates in the second list removed. The output always should be the same order as the input. How do I go about this? (A one liner would be nice if it were simple.)
| |||
|
feedback
|
|
Assuming inputs
To get the ordered difference l1 - l2, write
Alternatively, use list comprehensions:
If you're doing this with very large list (where performance is an issue), construct a
| |||||||||||
feedback
|
EDIT: for long lists, you don't want to do all those list lookups. Here are two other recipes: union:
difference:
| ||||
|
feedback
|
| |||
|
feedback
|
| ||||
|
feedback
|
|
Maybe you could use an
| |||
|
feedback
|
|
After defining the first two lists as such,
Here is the one-line solution to the first problem,
And the one-liner to the second problem,
| ||||
|
feedback
|