pub fn format_solve_path(
path: &[(usize, usize, u8, TechniqueFlags, &str)],
chunk_size: usize,
) -> Vec<String>Expand description
Formats a path of moves in the Sudoku solving process into a vector of strings.
This function takes a vector of tuples representing moves in the format (row, column, value)
and formats them into a human-readable string. Each move is represented as (row, column, value),
where row and column are 1-based indices, and value is the number placed in that cell.