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;

}

link|improve this question
What are your more exactly are thoughts on how to implement it? People will help you with that much more than just "How do I do it?". – awoodland Aug 16 '11 at 14:53
4  
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
I apologize for not typing it correctly. What I mean there is that, after checking the column or row if it has duplicates, is there still a need for me to check each 3x3 box if also each box has duplicates? – Trixie Cruz Aug 17 '11 at 12:40
feedback

1 Answer

Use a histogram approach for each 3x3 box, row, and column ... in other words create an array like

int histogram[9] = {};

where the offset into the histogram is the value you're checking for. As an example, the value for "1" would be histogram[0], the value for "2" would be histogram[1], and the value for any integer i between 1-9 would be histogram[i-1]. Then whenever you see a value, increase the value at that location in the histogram. For instance, if you see a value "2" in your 3x3 square or either of the board's rows, or colums, then do the following:

//this is the second slot in the histogram 
//representing values of "2"
histogram[1]++; 

Now you will, each time you run through this, first for a row, then a column, and then a 3x3 square, check to see if any of the values are either all "1", or are greater than "1", or still at "0". If they are all "1", then you have a value square, row, or column. If you have some that are greater than "1", then that's an invalid square, row, or column. If you have any values in the histogram that are still at "0", that too will be invalid. The nice thing is that once you hit any value that is greater than "1" or still at "0", you can stop checking the rest of the sudoku solution, making the check for duplicates and omissions really fast.

In order to actually cycle through a row, column, or 3x3 box to check for values will depend on how your entire 81-element sudoku array is allocated in memory ...

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.