freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-53-combinatoric-sel...

61 lines
1.1 KiB
Markdown
Raw Normal View History

---
id: 5900f3a11000cf542c50feb4
challengeType: 5
title: 'Problem 53: Combinatoric selections'
videoUrl: ''
localeTitle: ''
---
## Description
undefined
## Instructions
undefined
## Tests
<section id='tests'>
```yml
tests:
- text: ''
testString: 'assert.strictEqual(combinatoricSelections(1000), 4626, "<code>combinatoricSelections(1000)</code> should return 4626.");'
- text: ''
testString: 'assert.strictEqual(combinatoricSelections(10000), 4431, "<code>combinatoricSelections(10000)</code> should return 4431.");'
- text: ''
testString: 'assert.strictEqual(combinatoricSelections(100000), 4255, "<code>combinatoricSelections(100000)</code> should return 4255.");'
- text: ''
testString: 'assert.strictEqual(combinatoricSelections(1000000), 4075, "<code>combinatoricSelections(1000000)</code> should return 4075.");'
```
</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
// solution required
```
</section>