--- id: 5900f3f21000cf542c50ff05 challengeType: 5 title: 'Problem 134: Prime pair connection' videoUrl: '' localeTitle: 'Проблема 134: Соединение с главной парой' --- ## Description undefined ## Instructions
## Tests
```yml tests: - text: euler134() должен вернуть 18613426663617120. testString: 'assert.strictEqual(euler134(), 18613426663617120, "euler134() should return 18613426663617120.");' ```
## Challenge Seed
```js function euler134() { // Good luck! return true; } euler134(); ```
## Solution
```js // solution required ```