Update snippets/binomial_coefficient.md

This commit is contained in:
Angelos Chalaris
2020-10-04 11:58:15 +03:00
committed by GitHub
parent 562ccb547e
commit 7dc83dcd92

View File

@ -3,7 +3,7 @@ title: binomial_coefficient
tags: math,beginner
---
Return the number of ways to choose `k` items from `n` items without repetition and without order.
Returns the number of ways to choose `k` items from `n` items without repetition and without order.
- Use `math.comb()` to calculate the binomial coefficient.