--- id: 5900f5231000cf542c510034 challengeType: 5 title: 'Problem 438: Integer part of polynomial equation"s solutions' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler438(), 2046409616809, "euler438() should return 2046409616809.");' ```
## Challenge Seed
```js function euler438() { // Good luck! return true; } euler438(); ```
## Solution
```js // solution required ```