Beefy Boxes and Bandwidth Generously Provided by pair Networks
"be consistent"
 
PerlMonks  

Complex sorting

by vroom (His Eminence)
on Dec 31, 1999 at 22:02 UTC ( [id://1641]=perltutorial: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    #map BLOCK, LIST
    #or something like
    ...
    #or
    #map EXPR, LIST   
    @asciival=map(ord,@letters);
    
  2. or download this
    @origarray=('0 1 2','0 0 0','-3 -2 -1','10 11 12');
    @sortedarray=
    ...
    foreach(@sortedarray){
      print "$_\n";
    }
    
  3. or download this
    @sortedarray=
     map{$_->[0]}
    ...
              #calculate $computedsortval
              [$_,$computedsortval];
           } @origarray;
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: perltutorial [id://1641]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others chilling in the Monastery: (4)
As of 2024-10-06 22:10 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?
    The PerlMonks site front end has:





    Results (43 votes). Check out past polls.

    Notices?
    erzuuli‥ 🛈The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.