http://qs321.pair.com?node_id=665267


in reply to Re: Golf/Perlish solution to this problem?
in thread Golf/Perlish solution to this problem?

Except it gives the wrong answer:

Wanted: 8 1 2 7 6 3 4 5 Given: 8 1 7 2 6 3 5 4

Less important - the OP seems to want the array elements in that order rather than just a numeric sequence, but that's trivial to fix by using a slice.


Perl is environmentally friendly - it saves trees

Replies are listed 'Best First'.
Re^3: Golf/Perlish solution to this problem? (1..$n)
by tye (Sage) on Jan 31, 2008 at 06:40 UTC
    Less important - the OP seems to want the array elements in that order rather than just a numeric sequence

    Except that the array elements that the OP wants in that order are: "I have the numbers 1 to n". I doubt s/he cares whether it is his/her original 1..n or just a generated numeric sequence. Just FYI.

    - tye