--- id: 5900f3d91000cf542c50feea challengeType: 5 title: 'Problem 107: Minimal network' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler107(), 259679, "euler107() should return 259679.");' ```
## Challenge Seed
```js function euler107() { // Good luck! return true; } euler107(); ```
## Solution
```js // solution required ```