Help for this page

Select Code to Download


  1. or download this
      ##this bit of the script is not working ###
    
    ...
    #                    my @temp =   map { [ $_[1], $_[0], $_ ] } # step 
    +1
       #                          map { $_->[2] } # step 2
       #                           @uniform;
    
  2. or download this
        my @temp = # third, the final results are stored in @temp
            map { $_->[2] } # second this applies to the results of the fo
    +llowing:
            map { [ $_[1], $_[0], $_ ] } # first this applies to @uniform
            @uniform;
    
  3. or download this
        my @temp = map { ($_[1], $_[0], $_ )[2] } @uniform;
    
  4. or download this
        my @temp = @uniform;