标签:排序 range 相同 实现 不同的 去掉 span col 不同
现有N个1到1000之间的随机整数(N≤1000),对于其中重复的数字,只保留一个,把其余相同的数去掉,不同的数对应着不同的学生的学号。然后再把这些数从小到大排序
Python实现方式如下
while True: try: a = int(input()) res = set() for i in range(a): res.add(int(input())) for i in sorted(res): print(i) except: break
标签:排序 range 相同 实现 不同的 去掉 span col 不同
原文地址:https://www.cnblogs.com/fcbyoung/p/12562730.html