Search Results

0
votes

Create, sort, and print a list of 100 random ints in the fewest chars of code

plain old c-code in 167 chars: main(){int i=100,x[i],n=i;while(i)x[--i]=rand();for(i=0;i<n;i++){int b=x[i],m=i,j=0;for(;j<n;j++)if(x[j]<x[m])m=j;x[i]=x[m];x[m]=b;}i=n;while …