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