题解 | #查找兄弟单词#

查找兄弟单词

https://www.nowcoder.com/practice/03ba8aeeef73400ca7a37a5f3370fe68

inline = input().split(' ')
n = int(inline[0])
cand_words = inline[1:-3]
x_word = inline[-2]
order = int(inline[-1])


def hashWord(word: str):
    hash_x_word = {}
    for chr in word:
        if chr not in hash_x_word.keys():
            hash_x_word[chr] = 1
        elif chr in hash_x_word.keys():
            hash_x_word[chr] += 1
    return hash_x_word

target_word_hash = hashWord(x_word)

accWords = []
for ele in cand_words:
    if hashWord(ele) == target_word_hash and ele != x_word:
        accWords.append(ele)

sorted_acc_words = sorted(accWords)
# if len(sorted_acc_words) == 7:
#     print(sorted_acc_words)
print(len(sorted_acc_words))
if order <=  len(sorted_acc_words):
    print(sorted_acc_words[order-1])

要点:利用字典对每个单词建立hash,相等则纳入兄弟单词,字典序直接用python的sorted对字符串列表排序即可

全部评论

相关推荐

10-28 11:04
已编辑
美团_后端实习生(实习员工)
一个2人:我说几个点吧,你的实习经历写的让人觉得毫无含金量,你没有挖掘你需求里的 亮点, 让人觉得你不仅打杂还摆烂。然后你的简历太长了🤣你这个实习经历看完,估计没几个人愿意接着看下去, sdk, 索引这种东西单拎出来说太顶真了兄弟,好好优化下简历吧
点赞 评论 收藏
分享
10-07 23:57
已编辑
电子科技大学 Java
八街九陌:博士?客户端?开发?啊?
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务