--- id: 5900f3ca1000cf542c50fedd challengeType: 5 title: 'Problem 94: Almost equilateral triangles' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler94(), 518408346, "euler94() should return 518408346.");' ```
## Challenge Seed
```js function euler94() { // Good luck! return true; } euler94(); ```
## Solution
```js // solution required ```