How do I fill in a 5x5 grid.

BeethovensBrunette

Reputable
Sep 17, 2014
2
0
4,510
How do you fill in a 5x5 grid using only the numbers 1-25 without repeating. And every neighboring number has to be a sum to the numbers it touches.
 
Solution
Uhhh I don't see how this relates to videogames, but okay....
You have to start up with them in an ascending/descending order, and vertically add the others by shifting values.
The two solutions would be:

[1 2 3 4 5] [5 4 3 2 1]
[5 1 2 3 4] [1 5 4 3 2]
[4 5 1 2 3] [2 1 5 4 3]
[3 4 5 1 2] [3 2 1 5 4]
[2 3 4 5 1] [4 3 2 1 5]

Obviously this will work only for completely empty sets. If some numbers are already filled in, you need to find the solution on your own by logic...

Vynavill

Honorable
Uhhh I don't see how this relates to videogames, but okay....
You have to start up with them in an ascending/descending order, and vertically add the others by shifting values.
The two solutions would be:

[1 2 3 4 5] [5 4 3 2 1]
[5 1 2 3 4] [1 5 4 3 2]
[4 5 1 2 3] [2 1 5 4 3]
[3 4 5 1 2] [3 2 1 5 4]
[2 3 4 5 1] [4 3 2 1 5]

Obviously this will work only for completely empty sets. If some numbers are already filled in, you need to find the solution on your own by logic...
 
Solution

TRENDING THREADS