华为机试HJ81字符串字符匹配 题目: 想法: 将长字符串构建为字典,遍历短字符串,查找短字符串中的字符是否在字典中 while True: try: short_str = input() long_str = input() long_str_dict = { l for l in long_str} for