NC25322. 序列中整数去重
描述
输入描述
输入包含两行,第一行包含一个正整数n(1 ≤ n ≤ 1000),表示第二行序列中数字的个数;第二行包含n个整数(范围1~5000),用空格分隔。
输出描述
输出为一行,按照输入的顺序输出去重之后的数字,用空格分隔。
示例1
输入:
5 10 12 93 12 75
输出:
10 12 93 75
pypy3 解法, 执行用时: 70ms, 内存消耗: 21176K, 提交时间: 2023-07-29 21:39:44
n = int(input()) for i in list(set([int(x)for x in input().split()])): print(i, end=" ")
Python3 解法, 执行用时: 42ms, 内存消耗: 4544K, 提交时间: 2022-10-24 15:29:41
input() a = input().split() print(*sorted(set(a),key=a.index))