With these lists:
a=[2,6,79,10]
b=[6,7,2,0,8,5]
The desired output would be:
a=[79,10]
b=[7,0,8,5]
Why is this code not working?
def cel(a,b):
for x in a:
if x in b:
b.remove(x)
a.remove(x)
|
With these lists:
The desired output would be:
Why is this code not working?
|
|||||||
|
|
you can use set operations for this purpose:
EDIT I tried to debug your original code and realized that it skips a number whenever it removes one. After googling I found that modifying a list while iterating is not a defined behavior because of some internal indexing issues. The easiest workaround would be using a copy of the original array in your for loop as:
|
|||||||||||||
|
|
The algorithm in the @gokcehan's answer that preserve order is cubic You can preserve order and run it in linear time:
You can do it inplace:
|
|||||||||
|