csc-python-solutions/15/b/4 - Be Choosy.py

8 lines
104 B
Python
Raw Permalink Normal View History

2021-02-17 10:18:10 +00:00
def choose(n, k):
res = n/k
while k > 1:
2021-02-22 10:39:56 +00:00
n -= 1
2021-02-17 10:18:10 +00:00
k -= 1
res *= n/k
return res