--- id: 5900f50f1000cf542c510021 challengeType: 5 title: 'Problem 418: Factorisation triples' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler418(), 1177163565297340400, "euler418() should return 1177163565297340400.");' ```
## Challenge Seed
```js function euler418() { // Good luck! return true; } euler418(); ```
## Solution
```js // solution required ```