I need to unite two lists in Python3,where duplicates can exist,and for one set of these the resulting list will contain as many as max in both lists.An example might clarify it:
[1,2,2,5]( some operator)[2,5,5,5,9]=[1,2,2,5,5,5,9]
Ideas?
|
I need to unite two lists in Python3,where duplicates can exist,and for one set of these the resulting list will contain as many as max in both lists.An example might clarify it:
Ideas? |
|||
|
|
|
You can use the
It functions as a multiset (an unordered collection where each element can appear multiple times). The This class was added in Python 2.7 and 3.1. |
|||||||||
|
|
Why use lists in the first place? That data looks like a dict to me:
Then it's simple:
Result:
|
|||||
|
|
||||
|
|