Description
新春过后的第一次比赛,相信大家都已经准备好了。那么就为大家热下身吧。问题很简单,对一组输入的数据进行排序。 对输入的数据,我们有如下的约定:所有的输入数据都为正整数,且都不大于300000000。但是输入的数据可能会有重复,排序时,应将重复的数据合并,即同样的数只处理一次。
Sample Input
1 2 2 3 4 0
Sample Output
1 2 3 4
#include<stdio.h>
#include<algorithm>
using namespace std;
unsigned int a[10000000];
int main(){
}
sort(a,a+i);
printf("%d ",k);
}
}