--- id: 5900f3f71000cf542c50ff0a challengeType: 5 title: 'Problem 139: Pythagorean tiles' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler139(), 10057761, "euler139() should return 10057761.");' ```
## Challenge Seed
```js function euler139() { // Good luck! return true; } euler139(); ```
## Solution
```js // solution required ```