计算概论C明明的随机数所属作业: hw8 数据结构: 字典1 2 3 4 5 n = int(input()) l = sorted(set(map(int, input().split()))) print(len(l)) for i in l: print(i, end=" ")