this is the input value for logic
participant = ['leo', 'kiki', 'eden']
completion = ['eden', 'kiki']
and this is my source code to find word which is can't matching which In a mutual list
for i in participant:
for j in completion:
if i == j:
participant.remove(i)
completion.remove(i)
why this source code doesn't run to end of list element 'eden'?
currently result is it.
['leo', 'eden']