python题解
2024-07-20 09:36:40
发布于:广东
5阅读
0回复
0点赞
a = int(input())
b = []
e = {}
for i in range(a):
c = int(input())
b.append(c)
if c not in e:
e[c] = 1
else:
e[c] += 1
d = list(e.keys())
d.sort()
for i in range(len(e)):
print(d[i],end=' ')
print(e[d[i]])
这里空空如也
有帮助,赞一个