I have two lists filled with integers. I wish to add them together such that:
- the output list has no duplicate elements,
- is in order, and
- contains the union of both lists.
Is there any way to do so without creating my own custom function? If not, what would a neat and tidy procedure look like?
For instance:
list1 = [1, 10, 2]
list2 = [3, 4, 10]
Output:
outputlist = [1, 2, 3, 4, 10]