--- id: 5900f4281000cf542c50ff39 challengeType: 5 title: 'Problem 186: Connectedness of a network' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler186(), 2325629, "euler186() should return 2325629.");' ```
## Challenge Seed
```js function euler186() { // Good luck! return true; } euler186(); ```
## Solution
```js // solution required ```