C - Simple Sorting

查看题解 查看答案
题目描述
Time Limit: 1000 ms
Memory Limit: 256 mb

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≤N≤1000). Next N lines contain N integer numbers(one number per each line) of the original array.
输出描述:
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.
输入输出样例
输入样例#:
6
8 8 7 3 7 7
输出样例#:
复制
3 7 8
题目来源
上海交通大学机试题

提交代码后在此处可查看状态