freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-91-right-triangles-...

55 lines
625 B
Markdown

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