https://github.com/lloydmeta/nqueens-rs
Purely functional naive NQueens solver in Rust.
https://github.com/lloydmeta/nqueens-rs
nqueens nqueens-problem rust
Last synced: 7 months ago
JSON representation
Purely functional naive NQueens solver in Rust.
- Host: GitHub
- URL: https://github.com/lloydmeta/nqueens-rs
- Owner: lloydmeta
- License: mit
- Created: 2017-09-18T13:22:21.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2017-09-18T15:06:37.000Z (about 8 years ago)
- Last Synced: 2025-02-09T05:36:08.597Z (8 months ago)
- Topics: nqueens, nqueens-problem, rust
- Language: Rust
- Homepage:
- Size: 4.88 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# NQueens [](https://crates.io/crates/nqueens) [](https://travis-ci.org/lloydmeta/nqueens-rs) [](https://docs.rs/nqueens)
NQueens solver in Rust.
Highlights:
* Fairly fast
* Solver logic is pure and uses just higher-order functions## Usage
`cargo install nqueens`
```shell
USAGE:
nqueens --nFLAGS:
-h, --help Prints help information
-V, --version Prints version informationOPTIONS:
-N, --n The number of queens and side length of the board you want to solve for
```