题解 | #字符串字符匹配#

字符串字符匹配

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))

全部评论

相关推荐

点赞 收藏 评论
分享
牛客网
牛客企业服务