Is there any existing implementation that compute this in Perl?
nCk (n choose k), or n!/(k!*(n-k!))
That only returns a number, not list of combination.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Math::Counting defines the necessary functions. You can copy and paste the following and use it without any
external modules:
However, for arbitrary precision, you should use Math::BigInt. Again, you can use the function from Math::Counting: