Remove all the elements that occur in one list from another

后端 未结 7 703
旧巷少年郎
旧巷少年郎 2020-11-21 23:45

Let\'s say I have two lists, l1 and l2. I want to perform l1 - l2, which returns all elements of l1 not in l2

7条回答
  •  花落未央
    2020-11-22 00:20

    Alternate Solution :

    reduce(lambda x,y : filter(lambda z: z!=y,x) ,[2,3,5,8],[1,2,6,8])
    

提交回复
热议问题