--- id: 5900f3f61000cf542c50ff09 challengeType: 5 title: 'Problem 138: Special isosceles triangles' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler138(), 1118049290473932, "euler138() should return 1118049290473932.");' ```
## Challenge Seed
```js function euler138() { // Good luck! return true; } euler138(); ```
## Solution
```js // solution required ```