2018-09-30 23:01:58 +01:00
---
id: 5900f41f1000cf542c50ff32
challengeType: 5
title: 'Problem 179: Consecutive positive divisors'
---
## Description
<section id='description'>
Find the number of integers 1 < n < 107, for which n and n + 1 have the same number of positive divisors. For example, 14 has the positive divisors 1, 2, 7, 14 while 15 has 1, 3, 5, 15.
</section>
## Instructions
<section id='instructions'>
</section>
## Tests
<section id='tests'>
```yml
2018-10-04 14:37:37 +01:00
tests:
- text: <code>euler179()</code> should return 986262.
2018-10-08 01:01:53 +01:00
testString: 'assert.strictEqual(euler179(), 986262, "<code>euler179()</code> should return 986262.");'
2018-09-30 23:01:58 +01:00
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
function euler179() {
// Good luck!
return true;
}
euler179();
```
</div>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
</section>