/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* checks.h :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: kjimenez +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2022/07/24 14:45:31 by kjimenez #+# #+# */ /* Updated: 2022/07/24 15:14:11 by kjimenez ### ########.fr */ /* */ /* ************************************************************************** */ #ifndef CHECKS_H # define CHECKS_H int left_to_right(int **arr_answer, int row, int expected); int up_to_down(int **arr_answer, int col, int expected); int right_to_left(int **arr_answer, int row, int expected); int down_to_up(int **arr_answer, int col, int expected); int check_duplicates(int **board); #endif