2018-09-30 23:01:58 +01:00
---
id: 5900f3c11000cf542c50fed4
title: 'Problem 85: Counting rectangles'
2020-11-27 19:02:05 +01:00
challengeType: 5
2019-08-05 09:17:33 -07:00
forumTopicId: 302199
2018-09-30 23:01:58 +01:00
---
2020-11-27 19:02:05 +01:00
# --description--
2020-02-28 21:39:47 +09:00
2018-09-30 23:01:58 +01:00
By counting carefully it can be seen that a rectangular grid measuring 3 by 2 contains eighteen rectangles:
2020-02-28 21:39:47 +09:00
< img class = "img-responsive center-block" alt = "a diagram of the different rectangles found within a 3 by 2 rectangular grid" src = "https://cdn-media-1.freecodecamp.org/project-euler/counting-rectangles.png" style = "background-color: white; padding: 10px;" >
2018-09-30 23:01:58 +01:00
Although there exists no rectangular grid that contains exactly two million rectangles, find the area of the grid with the nearest solution.
2020-02-28 21:39:47 +09:00
2020-11-27 19:02:05 +01:00
# --hints--
2018-09-30 23:01:58 +01:00
2020-11-27 19:02:05 +01:00
`countingRectangles()` should return a number.
2018-09-30 23:01:58 +01:00
2020-11-27 19:02:05 +01:00
```js
assert(typeof countingRectangles() === 'number');
```
2018-09-30 23:01:58 +01:00
2020-11-27 19:02:05 +01:00
`countingRectangles()` should return 2772.
2018-09-30 23:01:58 +01:00
2020-11-27 19:02:05 +01:00
```js
assert.strictEqual(countingRectangles(), 2772);
2018-09-30 23:01:58 +01:00
```
2020-11-27 19:02:05 +01:00
# --seed--
2018-09-30 23:01:58 +01:00
2020-11-27 19:02:05 +01:00
## --seed-contents--
2018-09-30 23:01:58 +01:00
```js
2020-02-28 21:39:47 +09:00
function countingRectangles() {
2020-09-15 09:57:40 -07:00
2018-09-30 23:01:58 +01:00
return true;
}
2020-02-28 21:39:47 +09:00
countingRectangles();
2018-09-30 23:01:58 +01:00
```
2020-11-27 19:02:05 +01:00
# --solutions--
2018-09-30 23:01:58 +01:00
```js
// solution required
```