takuzu 0.3.0

A library for solving Takuzu (a.k.a. Binairo) number puzzles. The crate also contains an implementation called `tackle`. Use the library if you need integration or would rather write your own main, or clone the repository and run `cargo run --release FILE` for solving away a grid.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Takuzu solver

a.k.a. "Binairo"

Library and solver for the takuzu number puzzle game.

To use the solver:

```shell
$ git clone https://github.com/Letheed/takuzu.git
$ cd takuzu
$ cargo run --release [FILE]...
```
![solving grid2 screenshot](doc/solving_grid2.png)

For the `FILE` format, see the [library documentation](https://letheed.github.io/takuzu/takuzu/index.html) and the [examples](grids).

For additional details on the binary, see the [binary documentation](https://letheed.github.io/takuzu/tackle/index.html)