Skip to content

Latest commit

 

History

History
15 lines (9 loc) · 432 Bytes

README.md

File metadata and controls

15 lines (9 loc) · 432 Bytes

sudoku-solver

Simple sudoku solver using backtracking and forward-checking algorithms including their comparison

String config format

The string config format is as follows:

  • A field is represented as a character

  • If a field contains a number, that number is set

  • If a field does not contain a number, an underscore character is inserted

  • A forwardslash '/' character represents line break

  • All whitespace is ignored