解题思路:
1.接受输入然后利用collections.Counter统计即可;
2.统计后直接排序然后输出。
注意事项:
参考代码:
import collections num = int(input().strip()) out = [] if num > 0: colors = [input().strip() for _ in range(num)] cnt = collections.Counter(colors).most_common() temp = cnt[0][1] for i in cnt: if i[1] == temp: out.append(i[0]) out.sort() for j in out: print(j)
0.0分
0 人评分
C语言训练-求函数值 (C语言代码)浏览:944 |
C二级辅导-进制转换 (C语言代码)浏览:551 |
2005年春浙江省计算机等级考试二级C 编程题(3) (C语言代码)浏览:417 |
C语言程序设计教程(第三版)课后习题11.5 (C语言代码)浏览:932 |
C语言程序设计教程(第三版)课后习题6.7 (C语言代码)浏览:549 |
母牛的故事 (C语言代码)浏览:992 |
三角形 (C语言代码)浏览:965 |
循环入门练习6 (C语言代码)浏览:1058 |
Tom数 (C语言代码)浏览:598 |
理财计划 (C语言代码)浏览:494 |