freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-202-laserbeam.arabi...

55 lines
609 B
Markdown
Raw Normal View History

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