--- id: 5900f4cb1000cf542c50ffdd challengeType: 5 title: 'Problem 350: Constraining the least greatest and the greatest least' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler350(), 84664213, "euler350() should return 84664213.");' ```
## Challenge Seed
```js function euler350() { // Good luck! return true; } euler350(); ```
## Solution
```js // solution required ```