mirror of https://github.com/TheAlgorithms/C
parent
effa820fb0
commit
25ceda9b5e
|
@ -84,7 +84,6 @@ void test(void)
|
|||
exit(EXIT_FAILURE);
|
||||
}
|
||||
|
||||
// arrays to store points (x,y)
|
||||
double *x = (double *)malloc(N * sizeof(double));
|
||||
double *y = (double *)malloc(N * sizeof(double));
|
||||
|
||||
|
|
|
@ -37,7 +37,7 @@ struct sudoku
|
|||
};
|
||||
|
||||
/**
|
||||
* Function to check if `x`^th row is valid
|
||||
* Check if `x`^th row is valid
|
||||
* @param a ::sudoku to check
|
||||
* @param x row to check
|
||||
* @param y ignored column
|
||||
|
|
Loading…
Reference in New Issue