题解 | #字符串字符匹配#
字符串字符匹配
https://www.nowcoder.com/practice/22fdeb9610ef426f9505e3ab60164c93
import sys
set1=set(input())
set2=set(input())
if not bool(set1-set2):
print("true")
else:
print("false")
while True可以看情况直接加
字符串字符匹配
https://www.nowcoder.com/practice/22fdeb9610ef426f9505e3ab60164c93
import sys
set1=set(input())
set2=set(input())
if not bool(set1-set2):
print("true")
else:
print("false")
while True可以看情况直接加
相关推荐