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
/
a50.py
blob: 89cc54068329a2c1b212b55491396079e0634cf1 (
plain
)
1
2
3
def
check_subset
(
test_tup1
,
test_tup2
):
res
=
set
(
test_tup2
)
.
issubset
(
test_tup1
)
return
(
res
)