10.31.2024刷华为OD C题型

文章目录

10.24.2024刷华为OD C题型(四) -

HJ26

HJ27

python 复制代码
def get_dict(str1: str):
    dic_0 = {}
    for ch in str1:
        if ch not in dic_0:
            dic_0[ch] = 1
        else:
            dic_0[ch] += 1
    return dic_0

temp = input().split()
n = int(temp[0])
list = []
for i in range(n):
    list.append(temp[i + 1])
str_comp = temp[-2]
k = int(temp[-1])

res_list = []

dic_comp = get_dict(str_comp)



for i in range(n):
    if get_dict(list[i]) != dic_comp:
        continue
    if list[i] == str_comp:
        continue
    else:
        res_list.append(list[i])
# print(res_list)
res_list = sorted(res_list)
print(len(res_list))
if len(res_list) >= k:
    print(res_list[k - 1])

参考答案:

语法知识记录

  • 获取输入参数可以用list的【:】
  • 比较单词字符是否一样,可以直接从list里抽出来,然后用sorted
相关推荐
LG.YDX19 分钟前
java: 题目:银行账户管理系统
java·开发语言·python
西建大的开心崽20 分钟前
疯狂Java讲义——第4章 流程控制与数组
java·开发语言
_GR28 分钟前
每日OJ题_牛客_最长公共子序列_DP_C++_Java
java·开发语言·数据结构·c++·算法·leetcode
随笔写35 分钟前
JavaScript 读取及写入本地文件
开发语言·javascript·ecmascript
在校大two学生1 小时前
红队-linux基础(1)
开发语言·python·学习
雪碧透心凉_1 小时前
python人工智能编程前景
开发语言·人工智能·python
Python_trys1 小时前
Python网络爬虫入门篇!
开发语言·爬虫·python
徐浪老师1 小时前
妙趣横生:Python 动画程序的实现与多样化拓展
开发语言·python·pygame
The_Ticker1 小时前
PHP查询实时股票行情
开发语言·php·学习方法
摇光~2 小时前
7篇Python爬虫实例,直接代码可运行,全网最全,注释超详细(适合收藏)——2、爬取图片信息。
开发语言·爬虫·python