binoxxo 0.5.0

Binoxxo is a library to create and check binoxxo puzzles.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! This example demonstrates how to create a puzzle with `create_puzzle_board`.
//! It also shows how to print a board to terminal.

fn main() {
    // create a puzzle
    let size = 10usize;
    let guesses = 15usize;
    let board = binoxxo::bruteforce::create_puzzle_board(size, guesses);

    println!("{}", board.to_string());
}