--- id: 5900f3ca1000cf542c50fedd challengeType: 5 title: 'Problem 94: Almost equilateral triangles' --- ## Description
It is easily proved that no equilateral triangle exists with integral length sides and integral area. However, the almost equilateral triangle 5-5-6 has an area of 12 square units. We shall define an almost equilateral triangle to be a triangle for which two sides are equal and the third differs by no more than one unit. Find the sum of the perimeters of all almost equilateral triangles with integral side lengths and area and whose perimeters do not exceed one billion (1,000,000,000).
## Instructions
## Tests
```yml tests: - text: euler94() should return 518408346. testString: assert.strictEqual(euler94(), 518408346, 'euler94() should return 518408346.'); ```
## Challenge Seed
```js function euler94() { // Good luck! return true; } euler94(); ```
## Solution
```js // solution required ```