#include <stdio.h>
#include <stdlib.h>
#define R 4
#define C 5
// functions for option 1 initializeCountArray and TestCount and Sudoku
void initializeCountArray(int *count)
{
int i;
for (i = 0; i < 10; i++)
count[i] = 0;
}
int TestCount(int *count)
{
int i;
for (i = 1; i < 10; i++)
if ( count[i] == 1)
count[0]++;
return 1;
}
int Sudoku(int mat[R][C])
{
int count[10] = { 0 };
int rows,cols,i,j;
for(rows=0; rows<R-2; rows++)
{
for (cols = 0; cols<C-2; cols++)
{
initializeCountArray(count);
for (i = rows; i <= rows+2; i++)
{
for (j = cols; j <= cols+2; j++)
{
count[ mat[i][j] ] ++;
printf("\n%d,%d",i,j);
}
}
printf("\n TestCount=%d",TestCount(count));
if (TestCount(count) == 9)
return 1;
}
}
return 0;
}
void main ()
{
int mat[R][C] = {{1,7,8,9,6},
{1,3,3,4,6},
{1,1,1,2,5},
{1,6,7,8,9}};
printf ("\n Check Matrix if Suduku 3X3 square found");
if (Sudoku(mat) == 1)
printf("\n Sudoku square matrix was found\n");
else
printf("\n Sudoku square matrix NOT found\n");
}
Эта программа должна выполнить специальный тест кода c, который мы получили в классе с включенными функциями, и мы не можем использовать другие методы при запуске программы, функция TestCount выдает неправильный номер в качестве вывода I Используются тестовые распечатки индексов и я не могу понять, что не так, пожалуйста, помогите