5 lines
75 B
Raku
5 lines
75 B
Raku
sub binomial {
|
|
use bigint;
|
|
my($n,$k) = @_;
|
|
(0+$n)->bnok($k);
|
|
}
|