freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-218-perfect-right-a...

55 lines
612 B
Markdown

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