def checkAllChr(word, lword):
lwordList = []
for chr in lword:
lwordList.append(chr)
check = True
for chr in word:
if chr not in lwordList:
check = False
return check
Created
November 28, 2020 02:37
-
-
Save akirap3/cd9466c548eb8395dbd92e82a2500873 to your computer and use it in GitHub Desktop.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment