For more information on the challenge, see the scoring and tutorial.
For more information on the SDK, see the documentation included in the SDK.
For all other questions, use the forum or email alias below.
Sure! You can download the SDK here.
We originally created those graphs, but over 4x4x4, they become simply too big to be useful to a human reader. Too many lines cross, making it almost impossible to use.
The CSV information for the result cube is created by iterating over the coordinates of the cube, in X-Y-Z order. To load it, you can write something like: VB:
dim i,x,y,z as integer dim values() as string = strValues.split(","c) dim myCube(side - 1, side - 1, side - 1) as integer for x = 0 to side -1 for y = 0 to side - 1 for z = 0 to side - 1 myCube(x,y,z) = values(i) i += 1 next next next
int i,x,y,z; string[] values = strValues.split(","); int[,,] myCube = new int[Side, Side,Side]; for (x = 0; x < Side; x++) { for (y = 0; y < Side; y++) { for (z = 0; z < Side; z++) { myCube[x, y, z] = values[i]; i++; } } }