Skip to content

Releases: florian1345/sudoku-variants

v0.2.1

05 Apr 15:23
Compare
Choose a tag to compare

Fixed a bug where the StrategicBacktrackingSolver with a OnlyCellStrategy could yield wrong solutions.

v0.2.0

26 Mar 15:43
57c9dbe
Compare
Choose a tag to compare

Added strategies with solvers which deploy them.
Added functionality to constraint to enable a notion of "groups" of cells.
Minor style, test, and benchmark improvements.

v0.1.1

27 Dec 17:23
Compare
Choose a tag to compare

A few fixes:

  • Added repository link to Cargo.toml
  • Fixed Fisher-Yates shuffle

v0.1.0

13 Sep 15:28
acde673
Compare
Choose a tag to compare

First release with the following features:

  • Parsing and printing Sudoku
  • Checking validity of Sudoku and solutions according to standard rules as well as some common variants
  • Injection of custom constraints
  • Solving Sudoku using a perfect backtracking algorithm
  • Generating Sudoku, with a possibility to specify a custom solver that has to be able to solve the result, thus controlling the difficulty