int a[N^2]={0},i,j;
for(i=0;i<N^2;i++)
{
cin>>j;
a[j]++;
}
for(i=0;i<N^2;i++)
{
if(a[i]!=0)
{
while(a[i]--)
{
cout<<i<<"\t";
}} -- You received this message because you are subscribed to the Google Groups "Algorithm Geeks" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/algogeeks?hl=en.
