Guest User

Untitled

a guest
Oct 19th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.09 KB | None | 0 0
  1. def isSubset(l1,l2):
  2. for i in l2:
  3. if i not in l1:
  4. return False
  5. return True
Add Comment
Please, Sign In to add comment