1
0
This repository has been archived on 2024-10-25. You can view files and clone it, but cannot push or open issues or pull requests.
2023-08-06 20:12:38 +02:00

23 lines
1.2 KiB
C

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* checks.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: kjimenez <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* 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