combinatoricSelections(1000)
should return 4626.
testString: assert.strictEqual(combinatoricSelections(1000), 4626);
- text: combinatoricSelections(10000)
should return 4431.
testString: assert.strictEqual(combinatoricSelections(10000), 4431);
- text: combinatoricSelections(100000)
should return 4255.
testString: assert.strictEqual(combinatoricSelections(100000), 4255);
- text: combinatoricSelections(1000000)
should return 4075.
testString: assert.strictEqual(combinatoricSelections(1000000), 4075);
```