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

55 lines
637 B
Markdown

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