freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-456-triangles-conta...

55 lines
650 B
Markdown

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