freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-165-intersections.a...

55 lines
607 B
Markdown

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