题解 | #字符串字符匹配#
字符串字符匹配
https://www.nowcoder.com/practice/22fdeb9610ef426f9505e3ab60164c93
def is_in_logstr(ss: str, ls: str):
for i in ss:
# print(i)
if i not in ls:
return "false"
return "true"
while True:
try:
ss: str = input()
ls: str = input()
# print(ss, ls)
print(is_in_logstr(ss, ls))
except:
break

华为HUAWEI公司福利 439人发布