#3882. 整数去重
整数去重
No testdata at current.
Background
Special for beginners, ^_^
Description
给定含有n个整数的序列,要求对这个序列进行去重操作。所谓去重,是指对这个序列中每个重复出现的数,只保留该数第一次出现的位置,删除其余位置。
Format
Input
Two integers x and y, satisfying .
Output
One integer, the sum of x and y.
Samples
5
10 12 93 12 75
10 12 93 75
Limitation
1s, 1024KiB for each test case.