--- id: 5900f4f21000cf542c510005 challengeType: 5 title: 'Problem 390: Triangles with non rational sides and integral area' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler390(), 2919133642971, "euler390() should return 2919133642971.");' ```
## Challenge Seed
```js function euler390() { // Good luck! return true; } euler390(); ```
## Solution
```js // solution required ```