pub fn create_puzzle_board(size: usize, guesses: usize) -> Board
Expand description

Returns a binoxxo puzzle board of side length size. There are some empty fields on the board and there exists at-least one valid board, which can be constructed from the puzzle.

Panics

Panics if size is odd or zero.

May also panic if it didn’t find a valid board. See fn create_full_board for details.