本文主要是介绍华为OD机试真题-万能字符单词拼写-2023年OD统一考试(C卷)---Python3--开源,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
题目:
考察内容:
str.repalce(old, new, 1); flag
代码:
"""
题目分析:
没有掌握,输出为0
输入:
words的个数, N int
每个字符串元素输出:
词汇表words中掌握的单词个数
4
cat
bt
hat
tree
atach??4
ax
cae
hcae
ahe
atach?1
tree
atach??
思路:"""
N = int(input())
words_list = list()
words_set = set()
for _ in range(N):str_temp = input()words_list.append(str_temp)glossary = input()
# 先把替换的字母求出来,再遍历,去重res_sum = 0
for words in words_list:# 每遍历一个新的word, 词汇表重新赋值temp_glossary = glossaryflag = Falsefor word in words:if word in temp_glossary:temp_glossary = temp_glossary.replace(word, "", 1)elif "?" in temp_glossary:temp_glossary = temp_glossary.replace("?", "", 1)else:flag = Trueif not flag:res_sum += 1print(res_sum)
这篇关于华为OD机试真题-万能字符单词拼写-2023年OD统一考试(C卷)---Python3--开源的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!