show/hide this revision's text 2 corrected the complexity

I think it would be much faster if you didn't solve it mathematically but first check all rows for multiple occurrences of 1s, then all columns and finally all diagonal lines.

Here is some code to test the diagonal lines in a simple way. (It's JavaScript, sorry!)

var count = 0;
for (column = -n; column < n; column++) {
    for (row = 0; row < n; row++) {
            // conditions for which there are no valid coordinates.
            if (column + row > 6) {
                break;
            }
            if (column < 0) {
                continue;

            if (field[row][column] == 1) {
                count++;
                if (count == 2)
                    break; // collision
            }
    }
}

This method would have a complexity of O(n^2), whereas the one you suggested has a complexity of O(n^2 + k!k^2) (k being the number of 1s) If k is always small this should be no problem.

show/hide this revision's text 1

I think it would be much faster if you didn't solve it mathematically but first check all rows for multiple occurrences of 1s, then all columns and finally all diagonal lines.

Here is some code to test the diagonal lines in a simple way. (It's JavaScript, sorry!)

var count = 0;
for (column = -n; column < n; column++) {
    for (row = 0; row < n; row++) {
            // conditions for which there are no valid coordinates.
            if (column + row > 6) {
                break;
            }
            if (column < 0) {
                continue;

            if (field[row][column] == 1) {
                count++;
                if (count == 2)
                    break; // collision
            }
    }
}

This method would have a complexity of O(n^2), whereas the one you suggested has a complexity of O(n^2 + k!) (k being the number of 1s) If k is always small this should be no problem.