mirror of
https://github.moeyy.xyz/https://github.com/TheAlgorithms/C.git
synced 2023-10-11 15:56:24 +08:00
parent
effa820fb0
commit
25ceda9b5e
@ -84,7 +84,6 @@ void test(void)
|
|||||||
exit(EXIT_FAILURE);
|
exit(EXIT_FAILURE);
|
||||||
}
|
}
|
||||||
|
|
||||||
// arrays to store points (x,y)
|
|
||||||
double *x = (double *)malloc(N * sizeof(double));
|
double *x = (double *)malloc(N * sizeof(double));
|
||||||
double *y = (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 a ::sudoku to check
|
||||||
* @param x row to check
|
* @param x row to check
|
||||||
* @param y ignored column
|
* @param y ignored column
|
||||||
|
Loading…
Reference in New Issue
Block a user