Coloring the Chess Board
up vote
6
down vote
favorite
We have 8x8 Chess board like grid (8x8 2D matrix) and we are trying to color every single square/cell. But the rules are interesting;
- You may start from any square you want and color that square for the beginning.
- You can continue coloring another square in the grid which is $4$ or $5$ squares away from the square you started and colored from and so on (vertically or horizontally).
- You cannot color the same square you colored before or come back again on that.
What is the maximum amount of squares you can color with the given rule above?
logical-deduction optimization
|
show 5 more comments
up vote
6
down vote
favorite
We have 8x8 Chess board like grid (8x8 2D matrix) and we are trying to color every single square/cell. But the rules are interesting;
- You may start from any square you want and color that square for the beginning.
- You can continue coloring another square in the grid which is $4$ or $5$ squares away from the square you started and colored from and so on (vertically or horizontally).
- You cannot color the same square you colored before or come back again on that.
What is the maximum amount of squares you can color with the given rule above?
logical-deduction optimization
Am I right in thinking this is an 8 x 8 x 8 cube? I think that may need to be included in the question if so
– AHKieran
Dec 4 at 13:49
@AHKieran this is 8x8 Grid, not a cube. what makes you think like that? Oo
– Oray
Dec 4 at 13:50
sorry i meant an 8 x 8 x A cuboid, so the grids are extruded upwards A times?
– AHKieran
Dec 4 at 13:51
perhaps some sort of diagram example would be useful?
– AHKieran
Dec 4 at 13:52
Oray, you are misusing the word "Grid". Grid refers to the whole array of squares, whereas you seem to be using it to refer to a single square.
– Jaap Scherphuis
Dec 4 at 13:52
|
show 5 more comments
up vote
6
down vote
favorite
up vote
6
down vote
favorite
We have 8x8 Chess board like grid (8x8 2D matrix) and we are trying to color every single square/cell. But the rules are interesting;
- You may start from any square you want and color that square for the beginning.
- You can continue coloring another square in the grid which is $4$ or $5$ squares away from the square you started and colored from and so on (vertically or horizontally).
- You cannot color the same square you colored before or come back again on that.
What is the maximum amount of squares you can color with the given rule above?
logical-deduction optimization
We have 8x8 Chess board like grid (8x8 2D matrix) and we are trying to color every single square/cell. But the rules are interesting;
- You may start from any square you want and color that square for the beginning.
- You can continue coloring another square in the grid which is $4$ or $5$ squares away from the square you started and colored from and so on (vertically or horizontally).
- You cannot color the same square you colored before or come back again on that.
What is the maximum amount of squares you can color with the given rule above?
logical-deduction optimization
logical-deduction optimization
edited Dec 4 at 14:06
asked Dec 4 at 13:42
Oray
15.5k435148
15.5k435148
Am I right in thinking this is an 8 x 8 x 8 cube? I think that may need to be included in the question if so
– AHKieran
Dec 4 at 13:49
@AHKieran this is 8x8 Grid, not a cube. what makes you think like that? Oo
– Oray
Dec 4 at 13:50
sorry i meant an 8 x 8 x A cuboid, so the grids are extruded upwards A times?
– AHKieran
Dec 4 at 13:51
perhaps some sort of diagram example would be useful?
– AHKieran
Dec 4 at 13:52
Oray, you are misusing the word "Grid". Grid refers to the whole array of squares, whereas you seem to be using it to refer to a single square.
– Jaap Scherphuis
Dec 4 at 13:52
|
show 5 more comments
Am I right in thinking this is an 8 x 8 x 8 cube? I think that may need to be included in the question if so
– AHKieran
Dec 4 at 13:49
@AHKieran this is 8x8 Grid, not a cube. what makes you think like that? Oo
– Oray
Dec 4 at 13:50
sorry i meant an 8 x 8 x A cuboid, so the grids are extruded upwards A times?
– AHKieran
Dec 4 at 13:51
perhaps some sort of diagram example would be useful?
– AHKieran
Dec 4 at 13:52
Oray, you are misusing the word "Grid". Grid refers to the whole array of squares, whereas you seem to be using it to refer to a single square.
– Jaap Scherphuis
Dec 4 at 13:52
Am I right in thinking this is an 8 x 8 x 8 cube? I think that may need to be included in the question if so
– AHKieran
Dec 4 at 13:49
Am I right in thinking this is an 8 x 8 x 8 cube? I think that may need to be included in the question if so
– AHKieran
Dec 4 at 13:49
@AHKieran this is 8x8 Grid, not a cube. what makes you think like that? Oo
– Oray
Dec 4 at 13:50
@AHKieran this is 8x8 Grid, not a cube. what makes you think like that? Oo
– Oray
Dec 4 at 13:50
sorry i meant an 8 x 8 x A cuboid, so the grids are extruded upwards A times?
– AHKieran
Dec 4 at 13:51
sorry i meant an 8 x 8 x A cuboid, so the grids are extruded upwards A times?
– AHKieran
Dec 4 at 13:51
perhaps some sort of diagram example would be useful?
– AHKieran
Dec 4 at 13:52
perhaps some sort of diagram example would be useful?
– AHKieran
Dec 4 at 13:52
Oray, you are misusing the word "Grid". Grid refers to the whole array of squares, whereas you seem to be using it to refer to a single square.
– Jaap Scherphuis
Dec 4 at 13:52
Oray, you are misusing the word "Grid". Grid refers to the whole array of squares, whereas you seem to be using it to refer to a single square.
– Jaap Scherphuis
Dec 4 at 13:52
|
show 5 more comments
4 Answers
4
active
oldest
votes
up vote
16
down vote
accepted
The one-dimensional problem can be solved as follows:
|2|4|6|8|1|3|5|7|
Since we start and end at a central square, we can use the same strategy on the Y-axis and colour one row at a time. In the end we'll have coloured all 64 squares.
Using chessboard coordinates:
e5 a5 f5 b5 g5 c5 h5 d5
d1 h1 c1 g1 b1 f1 a1 e1
e6 a6 f6 b6 g6 c6 h6 d6
d2 h2 c2 g2 b2 f2 a2 e2
e7 a7 f7 b7 g7 c7 h7 d7
d3 h3 c3 g3 b3 f3 a3 e3
e8 a8 f8 b8 g8 c8 h8 d8
d4 h4 c4 g4 b4 f4 a4 e4
Er... you can't cross squares that have already been colored.
– Excited Raichu
Dec 4 at 14:10
@ExcitedRaichu Yes you can. Oray at first misread your question in the comments, but then corrected himself a minute or so later.
– Jaap Scherphuis
Dec 4 at 14:11
@JaapScherphuis ah, I definitely didn't see the edit, I was busy typing my answer (with no crossing)
– Excited Raichu
Dec 4 at 14:12
@jafe This is a lovely solution. I was trying to go around in 4x4 squares, filling two rows simultaneously, but was always left with two or more unreachable squares.
– Jaap Scherphuis
Dec 4 at 14:16
So the answer is "64". You answer implies that you're gunning for 64, but, I think you should actually say 64.
– Stephen Quan
Dec 5 at 4:16
|
show 1 more comment
up vote
3
down vote
I think I can get:
63 out of 64 squares coloured
Method:
You start in one of the centre lines, 4 in from the left, and move left 4, right 5, left 4, right 5 etc until the whole line is filled.
Then you repeat this vertically, starting from the square you last filled in the row, until the whole column is filled.
Repeating this ends up with a cross in middle 2 rows/columns. After this, repeating this line filling method creates a window like shape with the outside squares also filled.
At this point I managed to go around and fill the inner squares, but I could not move from the last one I filled to the the one remaining square so ended on 63.
add a comment |
up vote
0
down vote
I can do
17, without even crossing a colored square
by
using chessboard coordinates, e4 - e8 - a8 - a3 - f3 - f7 - b7 - b2 - g2 - g6 - c6 - c1 - h1 - h5 - d5 - d1
add a comment |
up vote
-1
down vote
All 64;
order is as follows:
[02,04,06,08,10,12,14,16]
[32,30,28,26,24,22,20,18]
[34,36,38,40,42,44,46,48]
[64,62,60,58,56,54,52,50]
[01,03,05,07,09,11,13,15]
[31,29,27,25,23,21,19,17]
[33,35,37,39,41,43,45,47]
[63,61,59,57,55,53,51,49]
sorry about the formatting
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
return StackExchange.using("mathjaxEditing", function () {
StackExchange.MarkdownEditor.creationCallbacks.add(function (editor, postfix) {
StackExchange.mathjaxEditing.prepareWmdForMathJax(editor, postfix, [["$", "$"], ["\\(","\\)"]]);
});
});
}, "mathjax-editing");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "559"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
noCode: true, onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fpuzzling.stackexchange.com%2fquestions%2f76045%2fcoloring-the-chess-board%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
4 Answers
4
active
oldest
votes
4 Answers
4
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
16
down vote
accepted
The one-dimensional problem can be solved as follows:
|2|4|6|8|1|3|5|7|
Since we start and end at a central square, we can use the same strategy on the Y-axis and colour one row at a time. In the end we'll have coloured all 64 squares.
Using chessboard coordinates:
e5 a5 f5 b5 g5 c5 h5 d5
d1 h1 c1 g1 b1 f1 a1 e1
e6 a6 f6 b6 g6 c6 h6 d6
d2 h2 c2 g2 b2 f2 a2 e2
e7 a7 f7 b7 g7 c7 h7 d7
d3 h3 c3 g3 b3 f3 a3 e3
e8 a8 f8 b8 g8 c8 h8 d8
d4 h4 c4 g4 b4 f4 a4 e4
Er... you can't cross squares that have already been colored.
– Excited Raichu
Dec 4 at 14:10
@ExcitedRaichu Yes you can. Oray at first misread your question in the comments, but then corrected himself a minute or so later.
– Jaap Scherphuis
Dec 4 at 14:11
@JaapScherphuis ah, I definitely didn't see the edit, I was busy typing my answer (with no crossing)
– Excited Raichu
Dec 4 at 14:12
@jafe This is a lovely solution. I was trying to go around in 4x4 squares, filling two rows simultaneously, but was always left with two or more unreachable squares.
– Jaap Scherphuis
Dec 4 at 14:16
So the answer is "64". You answer implies that you're gunning for 64, but, I think you should actually say 64.
– Stephen Quan
Dec 5 at 4:16
|
show 1 more comment
up vote
16
down vote
accepted
The one-dimensional problem can be solved as follows:
|2|4|6|8|1|3|5|7|
Since we start and end at a central square, we can use the same strategy on the Y-axis and colour one row at a time. In the end we'll have coloured all 64 squares.
Using chessboard coordinates:
e5 a5 f5 b5 g5 c5 h5 d5
d1 h1 c1 g1 b1 f1 a1 e1
e6 a6 f6 b6 g6 c6 h6 d6
d2 h2 c2 g2 b2 f2 a2 e2
e7 a7 f7 b7 g7 c7 h7 d7
d3 h3 c3 g3 b3 f3 a3 e3
e8 a8 f8 b8 g8 c8 h8 d8
d4 h4 c4 g4 b4 f4 a4 e4
Er... you can't cross squares that have already been colored.
– Excited Raichu
Dec 4 at 14:10
@ExcitedRaichu Yes you can. Oray at first misread your question in the comments, but then corrected himself a minute or so later.
– Jaap Scherphuis
Dec 4 at 14:11
@JaapScherphuis ah, I definitely didn't see the edit, I was busy typing my answer (with no crossing)
– Excited Raichu
Dec 4 at 14:12
@jafe This is a lovely solution. I was trying to go around in 4x4 squares, filling two rows simultaneously, but was always left with two or more unreachable squares.
– Jaap Scherphuis
Dec 4 at 14:16
So the answer is "64". You answer implies that you're gunning for 64, but, I think you should actually say 64.
– Stephen Quan
Dec 5 at 4:16
|
show 1 more comment
up vote
16
down vote
accepted
up vote
16
down vote
accepted
The one-dimensional problem can be solved as follows:
|2|4|6|8|1|3|5|7|
Since we start and end at a central square, we can use the same strategy on the Y-axis and colour one row at a time. In the end we'll have coloured all 64 squares.
Using chessboard coordinates:
e5 a5 f5 b5 g5 c5 h5 d5
d1 h1 c1 g1 b1 f1 a1 e1
e6 a6 f6 b6 g6 c6 h6 d6
d2 h2 c2 g2 b2 f2 a2 e2
e7 a7 f7 b7 g7 c7 h7 d7
d3 h3 c3 g3 b3 f3 a3 e3
e8 a8 f8 b8 g8 c8 h8 d8
d4 h4 c4 g4 b4 f4 a4 e4
The one-dimensional problem can be solved as follows:
|2|4|6|8|1|3|5|7|
Since we start and end at a central square, we can use the same strategy on the Y-axis and colour one row at a time. In the end we'll have coloured all 64 squares.
Using chessboard coordinates:
e5 a5 f5 b5 g5 c5 h5 d5
d1 h1 c1 g1 b1 f1 a1 e1
e6 a6 f6 b6 g6 c6 h6 d6
d2 h2 c2 g2 b2 f2 a2 e2
e7 a7 f7 b7 g7 c7 h7 d7
d3 h3 c3 g3 b3 f3 a3 e3
e8 a8 f8 b8 g8 c8 h8 d8
d4 h4 c4 g4 b4 f4 a4 e4
edited Dec 5 at 4:41
answered Dec 4 at 14:09
jafe
15.4k39153
15.4k39153
Er... you can't cross squares that have already been colored.
– Excited Raichu
Dec 4 at 14:10
@ExcitedRaichu Yes you can. Oray at first misread your question in the comments, but then corrected himself a minute or so later.
– Jaap Scherphuis
Dec 4 at 14:11
@JaapScherphuis ah, I definitely didn't see the edit, I was busy typing my answer (with no crossing)
– Excited Raichu
Dec 4 at 14:12
@jafe This is a lovely solution. I was trying to go around in 4x4 squares, filling two rows simultaneously, but was always left with two or more unreachable squares.
– Jaap Scherphuis
Dec 4 at 14:16
So the answer is "64". You answer implies that you're gunning for 64, but, I think you should actually say 64.
– Stephen Quan
Dec 5 at 4:16
|
show 1 more comment
Er... you can't cross squares that have already been colored.
– Excited Raichu
Dec 4 at 14:10
@ExcitedRaichu Yes you can. Oray at first misread your question in the comments, but then corrected himself a minute or so later.
– Jaap Scherphuis
Dec 4 at 14:11
@JaapScherphuis ah, I definitely didn't see the edit, I was busy typing my answer (with no crossing)
– Excited Raichu
Dec 4 at 14:12
@jafe This is a lovely solution. I was trying to go around in 4x4 squares, filling two rows simultaneously, but was always left with two or more unreachable squares.
– Jaap Scherphuis
Dec 4 at 14:16
So the answer is "64". You answer implies that you're gunning for 64, but, I think you should actually say 64.
– Stephen Quan
Dec 5 at 4:16
Er... you can't cross squares that have already been colored.
– Excited Raichu
Dec 4 at 14:10
Er... you can't cross squares that have already been colored.
– Excited Raichu
Dec 4 at 14:10
@ExcitedRaichu Yes you can. Oray at first misread your question in the comments, but then corrected himself a minute or so later.
– Jaap Scherphuis
Dec 4 at 14:11
@ExcitedRaichu Yes you can. Oray at first misread your question in the comments, but then corrected himself a minute or so later.
– Jaap Scherphuis
Dec 4 at 14:11
@JaapScherphuis ah, I definitely didn't see the edit, I was busy typing my answer (with no crossing)
– Excited Raichu
Dec 4 at 14:12
@JaapScherphuis ah, I definitely didn't see the edit, I was busy typing my answer (with no crossing)
– Excited Raichu
Dec 4 at 14:12
@jafe This is a lovely solution. I was trying to go around in 4x4 squares, filling two rows simultaneously, but was always left with two or more unreachable squares.
– Jaap Scherphuis
Dec 4 at 14:16
@jafe This is a lovely solution. I was trying to go around in 4x4 squares, filling two rows simultaneously, but was always left with two or more unreachable squares.
– Jaap Scherphuis
Dec 4 at 14:16
So the answer is "64". You answer implies that you're gunning for 64, but, I think you should actually say 64.
– Stephen Quan
Dec 5 at 4:16
So the answer is "64". You answer implies that you're gunning for 64, but, I think you should actually say 64.
– Stephen Quan
Dec 5 at 4:16
|
show 1 more comment
up vote
3
down vote
I think I can get:
63 out of 64 squares coloured
Method:
You start in one of the centre lines, 4 in from the left, and move left 4, right 5, left 4, right 5 etc until the whole line is filled.
Then you repeat this vertically, starting from the square you last filled in the row, until the whole column is filled.
Repeating this ends up with a cross in middle 2 rows/columns. After this, repeating this line filling method creates a window like shape with the outside squares also filled.
At this point I managed to go around and fill the inner squares, but I could not move from the last one I filled to the the one remaining square so ended on 63.
add a comment |
up vote
3
down vote
I think I can get:
63 out of 64 squares coloured
Method:
You start in one of the centre lines, 4 in from the left, and move left 4, right 5, left 4, right 5 etc until the whole line is filled.
Then you repeat this vertically, starting from the square you last filled in the row, until the whole column is filled.
Repeating this ends up with a cross in middle 2 rows/columns. After this, repeating this line filling method creates a window like shape with the outside squares also filled.
At this point I managed to go around and fill the inner squares, but I could not move from the last one I filled to the the one remaining square so ended on 63.
add a comment |
up vote
3
down vote
up vote
3
down vote
I think I can get:
63 out of 64 squares coloured
Method:
You start in one of the centre lines, 4 in from the left, and move left 4, right 5, left 4, right 5 etc until the whole line is filled.
Then you repeat this vertically, starting from the square you last filled in the row, until the whole column is filled.
Repeating this ends up with a cross in middle 2 rows/columns. After this, repeating this line filling method creates a window like shape with the outside squares also filled.
At this point I managed to go around and fill the inner squares, but I could not move from the last one I filled to the the one remaining square so ended on 63.
I think I can get:
63 out of 64 squares coloured
Method:
You start in one of the centre lines, 4 in from the left, and move left 4, right 5, left 4, right 5 etc until the whole line is filled.
Then you repeat this vertically, starting from the square you last filled in the row, until the whole column is filled.
Repeating this ends up with a cross in middle 2 rows/columns. After this, repeating this line filling method creates a window like shape with the outside squares also filled.
At this point I managed to go around and fill the inner squares, but I could not move from the last one I filled to the the one remaining square so ended on 63.
answered Dec 4 at 14:17
AHKieran
4,176737
4,176737
add a comment |
add a comment |
up vote
0
down vote
I can do
17, without even crossing a colored square
by
using chessboard coordinates, e4 - e8 - a8 - a3 - f3 - f7 - b7 - b2 - g2 - g6 - c6 - c1 - h1 - h5 - d5 - d1
add a comment |
up vote
0
down vote
I can do
17, without even crossing a colored square
by
using chessboard coordinates, e4 - e8 - a8 - a3 - f3 - f7 - b7 - b2 - g2 - g6 - c6 - c1 - h1 - h5 - d5 - d1
add a comment |
up vote
0
down vote
up vote
0
down vote
I can do
17, without even crossing a colored square
by
using chessboard coordinates, e4 - e8 - a8 - a3 - f3 - f7 - b7 - b2 - g2 - g6 - c6 - c1 - h1 - h5 - d5 - d1
I can do
17, without even crossing a colored square
by
using chessboard coordinates, e4 - e8 - a8 - a3 - f3 - f7 - b7 - b2 - g2 - g6 - c6 - c1 - h1 - h5 - d5 - d1
edited Dec 4 at 14:09
answered Dec 4 at 14:04
Excited Raichu
5,379759
5,379759
add a comment |
add a comment |
up vote
-1
down vote
All 64;
order is as follows:
[02,04,06,08,10,12,14,16]
[32,30,28,26,24,22,20,18]
[34,36,38,40,42,44,46,48]
[64,62,60,58,56,54,52,50]
[01,03,05,07,09,11,13,15]
[31,29,27,25,23,21,19,17]
[33,35,37,39,41,43,45,47]
[63,61,59,57,55,53,51,49]
sorry about the formatting
add a comment |
up vote
-1
down vote
All 64;
order is as follows:
[02,04,06,08,10,12,14,16]
[32,30,28,26,24,22,20,18]
[34,36,38,40,42,44,46,48]
[64,62,60,58,56,54,52,50]
[01,03,05,07,09,11,13,15]
[31,29,27,25,23,21,19,17]
[33,35,37,39,41,43,45,47]
[63,61,59,57,55,53,51,49]
sorry about the formatting
add a comment |
up vote
-1
down vote
up vote
-1
down vote
All 64;
order is as follows:
[02,04,06,08,10,12,14,16]
[32,30,28,26,24,22,20,18]
[34,36,38,40,42,44,46,48]
[64,62,60,58,56,54,52,50]
[01,03,05,07,09,11,13,15]
[31,29,27,25,23,21,19,17]
[33,35,37,39,41,43,45,47]
[63,61,59,57,55,53,51,49]
sorry about the formatting
All 64;
order is as follows:
[02,04,06,08,10,12,14,16]
[32,30,28,26,24,22,20,18]
[34,36,38,40,42,44,46,48]
[64,62,60,58,56,54,52,50]
[01,03,05,07,09,11,13,15]
[31,29,27,25,23,21,19,17]
[33,35,37,39,41,43,45,47]
[63,61,59,57,55,53,51,49]
sorry about the formatting
answered Dec 4 at 20:34
CaptianObvious
1
1
add a comment |
add a comment |
Thanks for contributing an answer to Puzzling Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
Use MathJax to format equations. MathJax reference.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fpuzzling.stackexchange.com%2fquestions%2f76045%2fcoloring-the-chess-board%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Am I right in thinking this is an 8 x 8 x 8 cube? I think that may need to be included in the question if so
– AHKieran
Dec 4 at 13:49
@AHKieran this is 8x8 Grid, not a cube. what makes you think like that? Oo
– Oray
Dec 4 at 13:50
sorry i meant an 8 x 8 x A cuboid, so the grids are extruded upwards A times?
– AHKieran
Dec 4 at 13:51
perhaps some sort of diagram example would be useful?
– AHKieran
Dec 4 at 13:52
Oray, you are misusing the word "Grid". Grid refers to the whole array of squares, whereas you seem to be using it to refer to a single square.
– Jaap Scherphuis
Dec 4 at 13:52