vote up 8 vote down star
9

What is the least amount of code you can write to create, sort (ascending), and print a list of 100 random positive integers? By least amount of code I mean characters contained in the entire source file, so get to minifying.

I'm interested in seeing the answers using any and all programming languages. Let's try to keep one answer per language, edit the previous to correct or simplify. If you can't edit, comment?

flag
3  
Don't these questions always end up with someone defining a runtime environment that does exactly the right thing with 1 keypress? – Albert Dec 8 '08 at 21:20
1  
It seems that someone defined a runtime named J to implement exactly the right thing with 10 keypresses :P – Justice Aug 3 at 16:23
show 4 more comments

54 Answers

prev 1 2
vote up 2 vote down

APL (interactive):

I wish I could show it in the APL character set, but I can't, so I'll use some ASCII notation to represent the characters that can't be done in ASCII. Let the symbol UP represent APL's up arrow character. If you want the numbers 0-99 (or 1-100, depending on whether you have the index origin in your workspace set to 0 or 1) to be unique, it takes 8 characters, like so:

UP100?100

If you don't care about uniqueness, do this (9 characters):

UP?100r100

where r stands in for APL's rho character.

Want larger numbers? Just substitute your upper limit, N, for the second 100 on each line, and your random numbers will be in the range 0 - N-1 (or 1-N if your index origin is set to 1).

If you want to guarantee that your numbers range from 0-99 (or 0 - N-1 if you're going for a larger upper limit) regardless of the index origin setting, just enclose either of the above lines in parentheses and add

-[]IO

to the end (where [ ] is standing in for APL's quad character). That's an additional 6 characters.

link|flag
show 4 more comments
vote up 0 vote down

This is not a joke. It's the best I can do at the moment. :)

JavaScript:

a=[];for(i=0;i<100;i++){b=Math.round(Math.random()*100);a[i]=b;}c=0;
while(c==0){c=1;for(j=0;j<99;j++){if(a[j]>a[j+1]){d=a[j];a[j]=a[j+1];a[j+1]=d;c=0;}}}
for(k=0;k<100;k++)document.write(a[k],"<br>")
link|flag
show 6 more comments
vote up 1 vote down

groovy:

r=new Random()
List l=[]
100.times{ l << r.nextInt(1000) }
l.sort().each { println it }
link|flag
vote up 4 vote down

An attempt in ruby:

p [].tap{|a|100.times{a<<rand(9e9)}}.sort

(With eight fewer characters, but requiring the tap kestrel of Ruby 1.9)

-for ruby 1.8:

p (0..?d).map{rand 1<<32}.sort

30 characters. (could trim by 2 by changing back to 9e9, but comment in question says range should be MaxInt32.

link|flag
vote up 0 vote down

VB - 151 chars:

Not quite as elegant as C# sadly...

Sub Main()
    Dim r = New Random
    Enumerable.Range(1, 100) _
      .Select(Function(i) r.Next) _
      .OrderBy(Function(i) i) _
      .ToList _
      .ForEach(AddressOf Console.WriteLine)
End Sub
link|flag
show 2 more comments
vote up 1 vote down

C#

If you're okay with imposing a limit on the array size then:

Array.ForEach(Guid.NewGuid().ToByteArray().OrderBy(c => c).ToArray(), c => Console.WriteLine(c));

Otherwise, a less restrictive (but slightly more verbose) angle could be taken:

var r = new Random();
(new int[100]).Select(i => r.Next()).OrderBy(i => i).ToList().ForEach(Console.WriteLine);

Okay, I think this is the last time I'm coming back to this one...

116 chars:

using System;
class A
{
    static void Main()
    {
        var r=new Random();
        var n=1D;
        for(int i=0;i<100;i++,Console.WriteLine(n+=r.Next()));
    }
}
link|flag
show 7 more comments
vote up 1 vote down
mzscheme -e "(sort (build-list 100 (λ x (random 9))) <)"

He said the least chars, not the least bytes. =)

link|flag
vote up 4 vote down

C#

using System;
using System.Linq;
class A {
    static void Main() {
        var r=new Random();
        new A[100].Select(i=>r.Next()).OrderBy(i=>i).ToList().ForEach(Console.WriteLine);
    }
}

EDIT: made complete program. assumes newlines and spaces could be removed, but left in for clarity :)

EDIT: made even shorter.... I dare someone to improve this one... I've tried for an hour.

EDIT: I think that's a bit shorter.

EDIT: I think that's even more shorter. Ugh, make me stop.

EDIT: One more line, one less character. Debatable...


Explanation

A[100] - an array of any old thing - in this case A's (it's a nice short name). The contents are completely ignored, it's the size of the array that counts.

.Select(i=>r.Next()) - generates an enumerable of 100 values of r.Next().

.OrderBy(i=>i) - sorts the previous in order.

.ToList() - convert the sorted enumerable of int to a List, so we can use ForEach.

ForEach(Console.WriteLine) - call Console.WriteLine 100 times, passing in each integer value in the list.

link|flag
show 10 more comments
vote up 0 vote down

A command line PHP one-liner (yes, the trailing semicolon is required...)

php -r 'while (++$i % 101) $j[] = rand(0, 99); sort($j); echo implode(" ", $j)."\n";'
link|flag
show 1 more comment
vote up 4 vote down

In BASH:

for i in `seq 100`; do echo $RANDOM; done | sort -n
link|flag
vote up 0 vote down

Java:

import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import java.util.Random;

class Rnd {
    public static void main(String[] args) {
    	List<Integer> list = new ArrayList<Integer>(100);
    	for (int i = 0; i < 100; i++) list.add(new Random().nextInt());
    	Collections.sort(list);
    	System.out.println(list);
    }
}
link|flag
show 6 more comments
vote up 4 vote down

Common Lisp, int between 0 and 10000 (there is no upper bound for that, but you have to choose one).

(sort (loop repeat 100 collect (random 10000)) #'<)
link|flag
show 2 more comments
vote up 0 vote down

I wouldn't accept that as program spec, too imprecise! :-)

Lua version:

t=table;l={}for i=1,20 do l[#l+1]=math.random(99)end;t.sort(l)print(t.concat(l,' '))

Might be slightly shortened, there might be smarter code too.

link|flag
vote up 0 vote down

Java:

  public void randList()
  {
  final int NUM_INTS = 100;
  Random r = new Random();
  List<Integer> s = new ArrayList<Integer>();

  for(int i = 0; i < NUM_INTS; i++)
    s.add(r.nextInt());

  Collections.sort(s);

  for(Integer i : s)
    System.out.println(i);
  }

Could be shorter, but the above is pretty clear and mostly-best-practices-compliant. This will generate warnings (raw types) and has bad variable names but is a little shorter.

  void rl()
  {
  Random r = new Random();
  List s = new ArrayList();

  for(int i = 0; i < 100; i++)
    s.add(r.nextInt());

  for(Object i : s)
    System.out.println((Integer) i);
  }
link|flag
show 3 more comments
vote up 2 vote down

Perl, a full 8 bytes shorter than nrich's version, and runs under "use warnings;" :)

perl -wle "$,=' ';print sort map {int rand 100} 1..100"
link|flag
show 4 more comments
vote up 1 vote down

Perl command line:

perl -e 'print $_, "\n" foreach sort map {int rand 10} (1..10)'

Prints 10 integers between 0 and 9 and sorts them.

link|flag
show 1 more comment
vote up 1 vote down

Tcl is dead.

Long live tcl.

Creates a RANDOM (0-99) length list and puts RANDOM (0-99) integers in it.

Also prints to the screen and can be run exactly as shown in a tcl file, or the tcl shell.

set l {}
proc r {} {expr { int(floor(rand()*99)) }}
for {set i 0} {$i<[r]} {incr i} {lappend l [r]}
puts [lsort -integer $l]


PHP is nice too.

confirms completely to exercise


<?
for($i=100;$i--;$l[]=rand());
sort($l);
print_r($l);

link|flag
vote up 3 vote down

Python to print 100 random, sorted integers

import random, sys
print sorted([random.randint(0, sys.maxint) for x in xrange(0, 100) ])

@Adam already beat me to it, but I thought using randint() and sys.maxint was sufficiently different to post anyway.

link|flag
show 4 more comments
vote up 0 vote down

Common Lisp (as I remember it, might have a few details wrong):

(setf a '(99 61 47))
(setf a (sort a))
(princ a)

The numbers are of course random; I chose them right now by dice roll.

(Maybe we could tighten up the definition a little?)

link|flag
show 2 more comments
vote up 14 vote down

Linux, command line:

% od -dAn -N40 /dev/random | tr ' ' '\n' | sort -nu
4959
6754
8133
10985
11121
14413
17335
20754
21317
30008
30381
33494
34935
41210
41417
43054
48254
51279
54055
55306
link|flag
show 2 more comments
vote up 0 vote down

prints random 100 random numbers in the range [0,100] sorted in C++

srand((unsigned int)time(NULL)); list<int> r;
for (int i=0;i<100;i++) r.push_back((int)((100)*rand()/(float)RAND_MAX));
r.sort();
for (list<int>::iterator j=r.begin();j!=r.end();j++) cout << *j << endl;

If you don't care about parity then replace r.push_back((int)((100)*rand()/(float)RAND_MAX)) with r.push_back(rand()%(101))

--

Here's a complete program in 200 characters:

#include <algorithm>
#include <iostream>
#include <random>
using namespace std;int main(){int a[100];generate_n(a,100,tr1::mt19937());sort(a,a+100);for(int i=0;i<100;++i){cout<<a[i]<<endl;}return 0;}

Array notation was shorter than any standard container I could find. tr1::mt19937 was the shortest random number generator I could find. using namespace std; was shorter than several instances of std::.

link|flag
show 1 more comment
vote up 1 vote down

Python (interactive):

import random
[int(9*random.random())]

What? It creates a list of one random integer, sorts it (trivially), and prints it out.

Ok, here's a serious answer

import random
sorted([int(9*random.random()) for x in range(9)])

It generates 9 random integers in [0, 9), sorts them, and prints them (in an interactive shell).

link|flag
show 1 more comment
vote up 6 vote down

My entry:

echo enter a bunch of ints, hit control-D when done
cat - | sort -n

or, per Adam in the comments:

echo enter a bunch of ints, hit control-D when done
sort -n
link|flag
show 6 more comments
vote up 0 vote down

C#:

List<int> TheList = new List<int>();
Random r = new Random();
for ( int i = 0; i < 10; i++ )
    TheList.Add(r.Next());
TheList.Sort();
foreach ( int i in TheList )
    Console.WriteLine(i);

If you're going for the raw character count you might be able to compress this a bit more. But basically this is it.

Edit: Attempt 2:

Random r= new Random();
for ( int i = 0, j=0; i < 100; i++ )
    Console.WriteLine(j+=r.Next(int.MaxValue/100));
link|flag
show 5 more comments
prev 1 2

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.