题目描述 You are given an unsorted array of integer numbers. Your task is to sort this array and kill possible duplicated elements occurring in it. 翻译(原题无翻译):给你一个未排序的整数数组。 您的任务是对该数组进行排序,并消除其中可能出现的重复元素。 输入格式 For each case, the first line of the input contains an integer number $ N $ representing the quantity of numbers in this array $(1 \leq N \leq 1000)$. Next $ N $ lines contain $ N $ integer numbers (one number per each line) of the original array. 翻译(原题无翻译):对于每种情况,输入的第一行包含一个整数 $ N $,表示这个数组中数字的数量 $(1 \leq N \leq 1000)$。 接下来的 $ N $ 行包含原始数组的 $ N $ 个整数(每行一个数字)。 输出格式 For each case, outtput file should contain at most $ N $ numbers sorted in ascending order. Every number in the output file should occur only once. 翻译(原题无翻译): 对于每种情况,输出文件最多包含 $ N $ 个按升序排序的数字。 输出文件中的每个数字应该只出现一次。 输入样例 6 8 8 7 3 7 7 输出样例 3 7 8