vote up -1 vote down star

i need to print out numbers 1-100 in a random order. the print statement should be:

echo 'h{'.$num.'}';

what is the shortest code to do this?

flag
9  
Don't get caught up on how short your code is. While it should be as concise as possible, it should not be your first priority. – Josh Leitzel Oct 29 at 3:00

2 Answers

vote up 9 vote down check

The easiest way is to use shuffle with an array containing the 100 numbers

e.g.

$sequence = range(1, 100);
shuffle($sequence);
foreach ($sequence as $num) {
    echo 'h{'.$num.'}';
}

Also see the range function

EDIT

I thought I might add a little on what shuffle does. Although php.net doesn't explicitly say so, it is likely based on the modern version of the Fisher-Yates shuffle algorithm. For a video demonstration of how it works, see http://www.youtube.com/watch?v=Ckh2DJrP7F4. Also see this excellent flash demonstration

The shuffle algorithm essentially works like this:

  1. For a given set of elements A1 to AN, and n = N;
  2. Randomly select an element Ak between A1 and An inclusive
  3. Swap Ak and An
  4. Set n = n - 1
  5. Repeat from step 2

Hope that helps.

link|flag
A shorter way to say the same thing would be: foreach (shuffle(range(1,100)) as $num) echo 'h{'.$num.'}'; – garethm Oct 29 at 3:19
3  
@garethm: No it wouldn't, since shuffle does not return the array. – deceze Oct 29 at 3:21
vote up 3 vote down

See the example for shuffle():

$numbers = range(1, 20);
shuffle($numbers);
foreach ($numbers as $number) {
    echo "$number ";
}
link|flag
you need to s/20/100/ – pavium Oct 29 at 3:01
I was just copy'n'pasting from the manual. I'm leaving the customizations to the OP. – deceze Oct 29 at 3:02
So he can fix the echo statement, too? ;-) – pavium Oct 29 at 3:03
3  
Yes he can. I think it's more important to convey the idea than copy'n'pastable solutions. – deceze Oct 29 at 3:06
1  
+1 for answering first and correctly. @pavium What is the point of giving people their entire programs? It's more important that the OP understands what is happening, and then applies it to his situation. – Josh Leitzel Oct 29 at 3:10

Your Answer

Get an OpenID
or

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