Help for this page

Select Code to Download


  1. or download this
    sub divisors {
      my($n,@f) = @_;
      my @d = (1);
    ...
      @d = sort { $a <=> $b } @d;
      @d;
    }