index
:
clp
main
A small Python compiler with optimizer written in Java
dcariotti
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
progs
/
a271.py
blob: 4d762f76598149143d99901607f1eb60676e5806 (
plain
)
1
2
def
check_subset
(
list1
,
list2
):
return
all
(
map
(
list1
.
__contains__
,
list2
))