Answers for "k choose n python"

1

k choose n python

>>> from math import comb
>>> comb(10,3)
120
Posted by: Guest on March-18-2022

Python Answers by Framework

Browse Popular Code Answers by Language