freeCodeCamp/curriculum/challenges/english/08-coding-interview-prep/project-euler/problem-94-almost-equilater...

60 lines
1.1 KiB
Markdown
Raw Normal View History

---
id: 5900f3ca1000cf542c50fedd
challengeType: 5
title: 'Problem 94: Almost equilateral triangles'
forumTopicId: 302211
---
## Description
<section id='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).
</section>
## Instructions
<section id='instructions'>
</section>
## Tests
<section id='tests'>
```yml
tests:
- text: <code>euler94()</code> should return 518408346.
testString: assert.strictEqual(euler94(), 518408346);
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
function euler94() {
// Good luck!
return true;
}
euler94();
```
</div>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
</section>