Trait SolvingStrategy

Source
pub trait SolvingStrategy {
    // Required methods
    fn apply(&self, sudoku: &mut Sudoku) -> bool;
    fn name(&self) -> &'static str;
}

Required Methods§

Source

fn apply(&self, sudoku: &mut Sudoku) -> bool

Source

fn name(&self) -> &'static str

Implementors§