Help for this page

Select Code to Download


  1. or download this
    my @array = ...;
    ...
    my @shuffled = shuffle @array;
    
  2. or download this
    my @array = ...
    ...
    my @shuffled = shuffle \@array;
    
  3. or download this
    my @shuffled = shuffle ... some expression generating a list ...;
    
  4. or download this
    my @shuffled = shuffle [ ... some expression generating a list ... ];
    
  5. or download this
    10 strings length 10
                    Rate     naive listutil blokhead_ref       buk blokhea
    +d   bukNew
    ...
    blokhead      804/s     9750%    3542%        9%       --          -2%
    +       -3%
    blokhead_ref  819/s     9927%    3608%       11%       2%           --
    +       -1%
    bukNew        826/s    10023%    3643%       12%       3%           1%
    +        --
    
  6. or download this
    #!/usr/bin/perl -slw
    use strict;
    ...
            };
        }
    }