Help for this page

Select Code to Download


  1. or download this
    # @groups = groups1($s)
    sub groups1 {
        return map { substr $_[0], $-[$_], $+[$_] - $-[$_] } 1..$#- 
    }
    
  2. or download this
    # educated_foo
    sub groups2 {
        no strict 'refs'; return map { $$_ } 1..$#- 
    }
    
  3. or download this
    # demerphq
    sub groups3 {
        return eval '($'.join(',$',1..$#-).')'
    }
    
  4. or download this
                 s/iter     demerphq    @- and @- educated_foo
    demerphq       6.65           --         -44%         -50%
    @- and @-      3.72          79%           --         -10%
    educated_foo   3.34          99%          11%           --
    
  5. or download this
    #!/usr/bin/perl
    
    ...
    });