freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-370-geometric-trian...

55 lines
627 B
Markdown
Raw Normal View History

---
id: 5900f4de1000cf542c50fff1
challengeType: 5
title: 'Problem 370: Geometric triangles'
videoUrl: ''
localeTitle: ''
---
## Description
undefined
## Instructions
undefined
## Tests
<section id='tests'>
```yml
tests:
- text: ''
testString: 'assert.strictEqual(euler370(), 41791929448408, "<code>euler370()</code> should return 41791929448408.");'
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
function euler370() {
// Good luck!
return true;
}
euler370();
```
</div>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
</section>