题解 | #字符串字符匹配#
字符串字符匹配
http://www.nowcoder.com/practice/22fdeb9610ef426f9505e3ab60164c93
while True:
try:
S, T = input(), input()
if set(S) & set(T) == set(S):
print('true')
else:
print('false')
except:
break
查看15道真题和解析