Suppose that the user entered 81 numbers and the program, 9x9 sudoku board, that I'll make will tell that, "the solution you entered is valid" or otherwise. How can I check each element in the row if they have duplicates? in the column? Can i do it using 2d arrays and some pointers. Thanks for your help!
I have done a draft but, instead of looking for the duplicates, I just compared if the sum for each row or column is 45. If not, then the solution is not valid but there is something wrong in my code. Kindly check and improve, thank you.
#include<stdio.h>
int main() {
char input[9][9];
int col,row,sumrow = 0,sumcol = 0,x,y;
printf("Enter sudoku board: ");
scanf("%s",&input);
for (row=0;row<9;row++){
for (col=0;col<9;col++)
input[row][col] = {input};
}
for (row=0;row<9;row++){
sumcol += input[row][0];
for (col=0;col<9; col++){
sumrow += input[0][col];}
}
if ((sumcol = 45)&&{sumrow = 45)){
printf("The solution is valid.");}
else{
printf("The solution is invalid.");}
return 0;
}
Does it need to also check each 3x3box?if you don't know this you'd best read up on sudoku before you write your pseudocode – marto Aug 16 '11 at 14:53