2018-09-30 23:01:58 +01:00
---
id: 5900f3a11000cf542c50feb4
challengeType: 5
2020-05-21 17:31:25 +02:00
isHidden: false
2018-09-30 23:01:58 +01:00
title: 'Problem 53: Combinatoric selections'
2019-08-05 09:17:33 -07:00
forumTopicId: 302164
2018-09-30 23:01:58 +01:00
---
## Description
< section id = 'description' >
2020-02-28 21:39:47 +09:00
2018-09-30 23:01:58 +01:00
There are exactly ten ways of selecting three from five, 12345:
2020-02-28 21:39:47 +09:00
< div style = 'text-align: center;' > 123, 124, 125, 134, 135, 145, 234, 235, 245, and 345< / div >
In combinatorics, we use the notation, $\displaystyle \binom 5 3 = 10$
In general, $\displaystyle \binom n r = \dfrac{n!}{r!(n-r)!}$, where $r \le n$, $n! = n \times (n-1) \times ... \times 3 \times 2 \times 1$, and $0! = 1$.
It is not until $n = 23$, that a value exceeds one-million: $\displaystyle \binom {23} {10} = 1144066$.
How many, not necessarily distinct, values of $\displaystyle \binom n r$ for $1 \le n \le 100$, are greater than one-million?
2018-09-30 23:01:58 +01:00
< / section >
## Instructions
< section id = 'instructions' >
< / section >
## Tests
< section id = 'tests' >
```yml
2018-10-04 14:37:37 +01:00
tests:
2020-02-28 21:39:47 +09:00
- text: < code > combinatoricSelections(1000)</ code > should return a number.
testString: assert(typeof combinatoricSelections(1000) === 'number');
2018-10-04 14:37:37 +01:00
- text: < code > combinatoricSelections(1000)</ code > should return 4626.
2019-07-26 19:45:56 -07:00
testString: assert.strictEqual(combinatoricSelections(1000), 4626);
2018-10-04 14:37:37 +01:00
- text: < code > combinatoricSelections(10000)</ code > should return 4431.
2019-07-26 19:45:56 -07:00
testString: assert.strictEqual(combinatoricSelections(10000), 4431);
2018-10-04 14:37:37 +01:00
- text: < code > combinatoricSelections(100000)</ code > should return 4255.
2019-07-26 19:45:56 -07:00
testString: assert.strictEqual(combinatoricSelections(100000), 4255);
2018-10-04 14:37:37 +01:00
- text: < code > combinatoricSelections(1000000)</ code > should return 4075.
2019-07-26 19:45:56 -07:00
testString: assert.strictEqual(combinatoricSelections(1000000), 4075);
2018-09-30 23:01:58 +01:00
```
< / section >
## Challenge Seed
< section id = 'challengeSeed' >
< div id = 'js-seed' >
```js
function combinatoricSelections(limit) {
// Good luck!
return 1;
}
combinatoricSelections(1000000);
```
< / div >
< / section >
## Solution
< section id = 'solution' >
```js
function combinatoricSelections(limit) {
2018-10-08 01:01:53 +01:00
const factorial = n =>
2018-09-30 23:01:58 +01:00
Array.apply(null, { length: n })
.map((_, i) => i + 1)
.reduce((p, c) => p * c, 1);
let result = 0;
const nMax = 100;
for (let n = 1; n < = nMax; n++) {
for (let r = 0; r < = n; r++) {
if (factorial(n) / (factorial(r) * factorial(n - r)) >= limit)
result++;
}
}
return result;
}
```
< / section >