求帮忙看360笔试第一题(身边问了一圈觉得没问题)
直接遍历输入得字符串,然后统计单个字母出现得次数,然后输出次数最大得(只过了0.09)
求助帮忙看一下
n = list(input()) count = [0] * 26 for i in n: count[ord(i) - 97] += 1 ans = max(count) print(ans)
n = list(input()) count = [0] * 26 for i in n: count[ord(i) - 97] += 1 ans = max(count) print(ans)
相关推荐