Homework 3

Jio Gim, Creative IT Engineering, POSTECH
Student ID: 20160087, Povis ID: iknowme

🤔 Tip: This page uses KaTeX feature of Gitlab. If you are watching this document in Github, look this prerendered README.

Sudoku Board
Sudoku Board

How I used CNF to solve E/O Sudoku game

Value Mapping

In my solver (named SUDOKUS), ‘x(i,j,k)‘`x_{(i,j,k)}` which means whether if ‘i‘`i` th row ‘j‘`j` th column has value ‘k‘`k` is mapped to ‘ijk‘`ijk`. For example, when ‘777‘`777` is true, the cell of ‘7‘`7` th row ‘7‘`7` th column should have a value of ‘7‘`7`.

CNF Making

Below items are conjuncted.

References

Development Notes