Skip to content

Commit c15888a

Browse files
committed
Update ncr_combinations.py
1 parent ab5dfe3 commit c15888a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

maths/ncr_combinations.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
def combinations(total: float, choose: int) -> float:
1111
"""
12-
Compute the number of combinations (total choose choose) for real total and integer choose
12+
Compute the number of combinations
1313
using the formula:
1414
1515
combinations = total * (total-1) * ... * (total-choose+1) / choose!

0 commit comments

Comments
 (0)