题解 | #字符串字符匹配#
字符串字符匹配
https://www.nowcoder.com/practice/22fdeb9610ef426f9505e3ab60164c93
def check(str1,str2):
for i in set(str1):
if i not in str2:
return 'false'
return 'true'
str1=input()
str2=input()
print(check(str1,str2))

阿里巴巴公司氛围 653人发布