题解 | #查找兄弟单词#

查找兄弟单词

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

word_list  = input().split(' ')
brother_list = []
for i in range(int(word_list[0])):
    if sorted(word_list[i+1]) == sorted(word_list[-2]) and word_list[i+1] != word_list[-2]:
        brother_list.append(word_list[i+1])
brother_list = sorted(brother_list)
print(len(brother_list))
try:
    print(brother_list[int(word_list[-1])-1])   
except:
    pass
全部评论

相关推荐

totoroyyw:千年老妖😂
投递华为等公司10个岗位
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务