--- id: 5900f3cc1000cf542c50fedf challengeType: 5 title: 'Problem 96: Su Doku' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler96(), 24702, "euler96() should return 24702.");' ```
## Challenge Seed
```js function euler96() { // Good luck! return true; } euler96(); ```
## Solution
```js // solution required ```