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