题解 | 明明的随机数
明明的随机数
https://www.nowcoder.com/practice/3245215fffb84b7b81285493eae92ff0
a = int(input()) if a >=1 and a <=500: L = set() for i in range(a): b = int(input()) if b >=1 and b<=1000: L.add(b) L = list(L) L.sort() for i in L: print(i)#牛客创作赏金赛#