summaryrefslogtreecommitdiff
path: root/progs/a524.py
blob: 8b323142c26cf95952fc050715aea853773c79f9 (plain)
1
2
3
def remove_elements(list1, list2):
    result = [x for x in list1 if x not in list2]
    return result