diff --git a/snippets/binomial_coefficient.md b/snippets/binomial_coefficient.md index 92c631fdc..60dcaeac7 100644 --- a/snippets/binomial_coefficient.md +++ b/snippets/binomial_coefficient.md @@ -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.