index
:
clp.git
main
A small Python compiler with optimizer written in Java
Ubuntu
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
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