Help for this page

Select Code to Download


  1. or download this
    sub n_choose_k {
      my ($n, $k) = @_;
      # f($n) = $n!
      return f($n)/f($k)/f($n-$k);
    }
    
  2. or download this
    sub n_choose_k {
      my ($n, $k) = @_;
    ...
      }
      return $t;
    }