--- id: 5900f3d21000cf542c50fee4 challengeType: 5 title: 'Problem 101: Optimum polynomial' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler101(), 37076114526, "euler101() should return 37076114526.");' ```
## Challenge Seed
```js function euler101() { // Good luck! return true; } euler101(); ```
## Solution
```js // solution required ```