You are on page 1of 1

Zen.

Py
(Prelims)
● Participants will have to create a sudoku solver.
● The code should take in the sudoku board in the given format and
also return the solved one in the same.
● If any plagiarism is found the team will be disqualified
immediately.
● The code shall solve all 10 problems of different difficulties to qualify
for further judgment.

Submission Date and Time: 25th Oct 2022, 10:00pm

Guidelines:

● Participants should adhere to the strict language restriction as the


code should be WRITTEN in PYTHON 3.
● Use of modules except time module is NOT ALLOWED
● There will be no leniency in the submission timings.
● GUI will only help when all the other judgement criteria are tied.

Judgment Criteria:

● Time taken to solve the sudokus.


● Method used to crack the problem
● Efficiency of the algorithm.

Format for Input and Output: (9x9 2-Dimensional array):


Board =[[0,0,7,0,4,0,0,0,0],
Here the 0’s represent the blanks in the board.
[0,0,0,0,0,8,0,0,6],
[0,4,1,0,0,0,9,0,0],
[0,0,0,0,0,0,1,7,0],
The Code Should Return The Solved Board
[0,0,0,0,0,6,0,0,0],
In The Same Format And Order.
[0,0,8,7,0,0,2,0,0],
[3,0,0,0,0,0,0,0,0],
[0,0,0,1,2,0,0,0,0],
[8,6,0,0,7,0,0,0,5]

You might also like