Help for this page

Select Code to Download


  1. or download this
    @listone = ([010000,010010,2],[010200,010210,5],[012359,020001,3]);
    @listtwo = ([010005,010015,1],[010207,010211,4]);
    
  2. or download this
    [010000,010004,2]
    [010005,010015,1]
    ...
    [010207,010211,4]
    [012359,012359,3]
    [020000,020001,3]
    
  3. or download this
    @combined = sort {$a->[0] <=> $b->[0]} (@listone,@listtwo);
    foreach (@combined) {
    ...
         #XXXXXXX
    
    }