Project Euler > Problem 166 > Criss Cross (Java Solution)

Problem:

A 4x4 grid is filled with digits d, 0 [≤] d [≤] 9.

It can be seen that in the grid

6 3 3 0
5 0 4 3
0 7 1 4
1 2 4 5

the sum of each row and each column has the value 12. Moreover the sum of each diagonal is also 12.

In how many ways can you fill a 4x4 grid with the digits d, 0 [≤] d [≤] 9 so that each row, each column, and both diagonals have the same sum?


Solution:

1366

Code:
The solution may include methods that will be found here: Library.java .

public interface EulerSolution{

public String run();

}
We don't have code for that problem yet! If you solved that out using Java, feel free to contribute it to our website, using our "Upload" form.

1 comment: