#ifndef SOLVER_H #define SOLVER_H void read_sudoku(int puzzle[][9]); int check_valid (int puzzle[][9], int row, int col, int num); #endif