freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-96-su-doku.arabic.md

55 lines
592 B
Markdown

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