Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl -w
    use strict;
    
  2. or download this
    $min = shift(@positions);
    $max = pop(@positions);
    
  3. or download this
    $max = (@positions)[-1];
    $min = (@positions)[0];