freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-390-triangles-with-...

55 lines
657 B
Markdown
Raw Normal View History

---
id: 5900f4f21000cf542c510005
challengeType: 5
title: 'Problem 390: Triangles with non rational sides and integral area'
videoUrl: ''
localeTitle: ''
---
## Description
undefined
## Instructions
undefined
## Tests
<section id='tests'>
```yml
tests:
- text: ''
testString: 'assert.strictEqual(euler390(), 2919133642971, "<code>euler390()</code> should return 2919133642971.");'
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
function euler390() {
// Good luck!
return true;
}
euler390();
```
</div>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
</section>