--- id: 5900f5141000cf542c510026 challengeType: 5 title: 'Problem 424: Kakuro' videoUrl: '' localeTitle: 'Задача 424: Какуро' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler424(), 1059760019628, "euler424() should return 1059760019628.");' ```
## Challenge Seed
```js function euler424() { // Good luck! return true; } euler424(); ```
## Solution
```js // solution required ```