freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-147-rectangles-in-c...

55 lines
631 B
Markdown

---
id: 5900f3ff1000cf542c50ff12
challengeType: 5
title: 'Problem 147: Rectangles in cross-hatched grids'
videoUrl: ''
localeTitle: ''
---
## Description
undefined
## Instructions
undefined
## Tests
<section id='tests'>
```yml
tests:
- text: ''
testString: 'assert.strictEqual(euler147(), 846910284, "<code>euler147()</code> should return 846910284.");'
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
function euler147() {
// Good luck!
return true;
}
euler147();
```
</div>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
</section>