A simple project while learning Rust - a solution to the n-queens problem.
This project exists to help me get started with Rust. It's not meant to be a good illustration of the n-queens problem per se, so please move along if you're looking for a serious implementation of the algorithm.
If you've got Rust installed and the repo cloned, all you need to do is build and run. Here's how:
cd <path-to-repo>
cargo build # Build the project
cargo run --release # Run itIf it worked, you'll also find a binary in the target/release directory that you can run directly. Good luck!
Feeling unsure of yourself in Rust ... or just plain bored? Then this is the project for you! Feel free to contribute by submitting pull requests that compile. I'll be sure to take a look at it ... eventually.
This project is licensed under the MIT License - see the LICENSE file for details.