题解 | #计算某字符出现次数#
计算某字符出现次数
https://www.nowcoder.com/practice/a35ce98431874e3a820dbe4b2d0508b1
from collections import Counter c = Counter(input().upper()) to_find=input().upper() print(c[to_find])
两种方法
- 调用 Counter,不区分大小写,全换成小写or大写
- 哈希:list 便利查找
计算某字符出现次数
https://www.nowcoder.com/practice/a35ce98431874e3a820dbe4b2d0508b1
from collections import Counter c = Counter(input().upper()) to_find=input().upper() print(c[to_find])
两种方法
相关推荐
蛀虫害虫:强的我害怕
牛客72783561...:简历不是这么写的,你这两个项目只说了用到了什么技术,却没说取得了什么成果,在我看来这就是你自己做的一个demo,没有价值。你为什么不写你电赛国二的那个项目?