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

592 B

id challengeType title videoUrl localeTitle
5900f3cc1000cf542c50fedf 5 Problem 96: Su Doku

Description

undefined

Instructions

undefined

Tests

tests:
  - text: ''
    testString: 'assert.strictEqual(euler96(), 24702, "<code>euler96()</code> should return 24702.");'

Challenge Seed

function euler96() {
  // Good luck!
  return true;
}

euler96();

Solution

// solution required