freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-276-primitive-trian...

55 lines
637 B
Markdown
Raw Normal View History

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