# dlx-rs An implementation of Knuth's 'Dancing Links' algorithm for solving exact cover problems. ## Usage Add this to your `Cargo.toml`: ```toml [dependencies] dlx = "0.1.0" ``` and this to your crate root: ```rust extern crate dlx; ```