Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/urholaukkarinen/algx

Rust implementation of Knuth's Algorithm X
https://github.com/urholaukkarinen/algx

algorithm-x dancing-links exact-cover pentominoes-solver rust sudoku sudoku-solver

Last synced: 11 days ago
JSON representation

Rust implementation of Knuth's Algorithm X

Awesome Lists containing this project

README

        

# algx
[![Latest version](https://img.shields.io/crates/v/algx.svg)](https://crates.io/crates/algx)
[![Documentation](https://docs.rs/algx/badge.svg)](https://docs.rs/algx)
[![MIT](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/urholaukkarinen/algx/blob/main/LICENSE-MIT)
[![Apache](https://img.shields.io/badge/license-Apache-blue.svg)](https://github.com/urholaukkarinen/algx/blob/main/LICENSE-APACHE)

Rust implementation of [Knuth's Algorithm X](https://en.wikipedia.org/wiki/Knuth%27s_Algorithm_X) for solving the [exact cover problem](https://en.wikipedia.org/wiki/Exact_cover).

## Quick start

`cargo add algx`

See the [Sudoku example](./examples/sudoku.rs).