阿头啊
阿头啊
全部文章
分类
题解(10)
归档
标签
去牛客网
登录
/
注册
阿头啊的博客
全部文章
(共2篇)
题解 | #数据分类处理#
from collections import defaultdict#导入包 l=input().split(' ')[1:] R=input().split(' ')[1:] R = [int(x) for x in R]#要先改格式不然会按字符串排序规则排序,比如说排成[16,26,4] r=...
Python3
数组
字符串
哈希表
数学
2022-03-27
2
551
题解 | #删除字符串中出现次数最少的字符#
a=20#初始值 for i in str: if str.count(i)<=a: a=str.count(i)#更新最小值 else: continue for i in str: if str.count(i)==a: ...
Python3
字符串
数学
2022-03-26
39
1419