--- id: 5900f3a11000cf542c50feb4 challengeType: 5 title: 'Problem 53: Combinatoric selections' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(combinatoricSelections(1000), 4626, "combinatoricSelections(1000) should return 4626.");' - text: '' testString: 'assert.strictEqual(combinatoricSelections(10000), 4431, "combinatoricSelections(10000) should return 4431.");' - text: '' testString: 'assert.strictEqual(combinatoricSelections(100000), 4255, "combinatoricSelections(100000) should return 4255.");' - text: '' testString: 'assert.strictEqual(combinatoricSelections(1000000), 4075, "combinatoricSelections(1000000) should return 4075.");' ```
## Challenge Seed
```js function combinatoricSelections(limit) { // Good luck! return 1; } combinatoricSelections(1000000); ```
## Solution
```js // solution required ```