show/hide this revision's text 2 deleted 221 characters in body

I can do it with two integer variables :

I'll call a row/column with all ones set 'complete'First, clear all the 1s that are not in either a complete row or column:

Then pick a row and a column that are not complete, say row 3 two passes (up to 32 rows and column columns...)

bool matrix[5][5] = 	{1, 0, 1(, 1, 0},	{0, 1, 1, 1, 0},	{1, 1, 1, 1, 1},	{1, 0based). (or -, 1if there aren't any).  If both are -, 1, 1},	{1, then you're done since the whole thing is complete.  Note that if you have one none-complete row1, then you have a non-complete column1, and vice-versa.

Clear all 1s that are not in 1, 1}int CompleteRows = ~0;int CompleteCols = ~0;// Find the selected first 0for (int row and column, and are not in a complete = 0; row and column < 5; ++row) for (using the values in the selected int col = 0; col < 5; ++col) CompleteRows &= ~(!matrix[row][col] << row); CompleteCols &= ~(!matrix[row][col] << col);for (int row and column as keys to which rows/columns were complete):

Now clear the selected = 0; row and column:

And you're done.< 5; ++row) for (int col = 0; col < 5; ++col) matrix[row][col] = (CompleteRows & (1 << row)) && (CompleteCols & (1 << col));

show/hide this revision's text 1

I can do it with two integer variables:

I'll call a row/column with all ones set 'complete' First, clear all the 1s that are not in either a complete row or column:

00110
00110
11111
00110
11111

Then pick a row and a column that are not complete, say row 3 and column 1 (0 based). (or -1 if there aren't any). If both are -1, then you're done since the whole thing is complete. Note that if you have one none-complete row, then you have a non-complete column, and vice-versa.

Clear all 1s that are not in the selected row and column, and are not in a complete row and column (using the values in the selected row and column as keys to which rows/columns were complete):

00000
00000
01110
00110
01110

Now clear the selected row and column:

00000
00000
00110
00000
00110

And you're done.