How to solve the 36 Cube puzzle – hints & solution

For Christmas, I got the 36 Cube puzzle. It is consists of 36 towers in 6 colors and 6 different sizes and a base plate with 6 by 6 slots to plug in the towers. These slots are of different heights. The goal is to place one towers of every color in each row and column. And theĀ  towers must fit to form a level cube.

After some tries, I came to the conclusion that this puzzle is the work of the devil and that I should not waste more brain cycles on solving it. So I wrote a little python script to solve the puzzle for me.

Show sourcecode

My program quickly came up with a correct placement for 34 towers – but it failed to find the complete solution.

[('P', 5), ('Y', 3), ('O', 2), ('B', 1), ('R', 4), ('G', 6)]
[('Y', 4), ('O', 1), ('P', 6), ('R', 2), ('G', 5), ('B', 3)]
[('O', 6), ('B', 5), ('R', 3), ('G', 4), ('P', 1), ('Y', 2)]
[('R', 1), ('G', 2), ('Y', 5), ('P', 3), ('B', 6), ('O', 4)]
[('B', 2), ('P', 4), ('G', 1), ('Y', 6), ('O', 3), ('R', 5)]
[('G', 3), ('R', 6), ('B', 4), ('O', 5), ('X', 2), ('X', 1)]

Legend:
P = Purple, Y = Yellow, O = Orange, B = Blue, R = Red, G = Green, X = Empty
The number is the size of the tower.
As you can see, I didn’t waste much time on making the output pretty :)

36cube almost solved

So close and yet so far

After spending lots of time verifying that my program was working correctly, I became impatient and googled for help. I found an answer, but it revealed to much, taking all the fun.

Therefore, I split my solution into multiple hints. If you are stuck, reveal just one of them at a time and try to figure it out by yourself. It is way more rewarding!

Hint #1 (show):

Hint #2 (show):

Hint #3 (show):

Hint #4 (show):

Hint #5 (show):

Even if you uncovered all hints, the puzzle is still far from solved. You can still tinker with it forever.

Spoiler alert: Don’t uncover the solution, unless your are really desperate!

Solution (show):

4 Responses to “How to solve the 36 Cube puzzle – hints & solution”

  1. Derrick Niederman says:

    Daniel,

    I came across your “36 Cube” solution page and enjoyed it a great deal. I don’t know whether my name is familiar, but it might be if you read the very fine print on either the puzzle packaging or the rules pamphlet, where I’m cited as the inventor of the puzzle.

    Truth be told, I once rued the very concept of solution pages such as yours, but I liked the way you handled the process and slowly unwrapped the solution. I couldn’t have asked for more, and I certainly hope that you enjoyed the puzzle.

    Although the puzzle has been out for a year-plus now, I have yet to see the solution process described as I originally described it to ThinkFun. Specifically, I was envisioning that people would get to 34, either repeatedly on their own or perhaps with computer assistance. (Yes, I took some pleasure in the fact that the puzzle couldn’t be solved by computer alone.) There are many different ways to achieve 34 correct towers, and the common denominator is that they all have an intractable set of four towers that are just plain wrong — two colors and two heights, but no way to make them flat. Of course, that’s the situation in a 2×2 version of this puzzle, and in fact the 2×2 and 6×6 sizes are the only cases where no “Euler square” exists. But once you reduce to the 2×2 case you can see that you can make the towers flat with a little hijinx. That’s precisely what I did in designing my original prototype, and I thought that maybe the characterization of the “34s” would be a common route to success, but thus far I haven’t heard it mentioned.

    Anyway, congrats and thanks again for the write-up.

    Derrick

  2. Derrick,

    I’m glad you like my solution and the way I present it. I don’t know if anyone who finds this page actually reveals the first hint and then goes back to figure it out, but I think it is better to give people the choice.

    I don’t know if I would have come up with a complete solution on my own, but I enjoyed the puzzle a lot anyway and I think even if one knows the solution there is still a lot of fun in store. For example, one could code a more elegant solver, as my approach is rather brute force, or dive into the mathematical background of the puzzle.

    Thanks a lot for taking the time to comment!

  3. Hi Derrick and Daniel – this is Andrea at ThinkFun – I enjoyed reading Daniel’s posting and of course Derrick’s response – I will be sure that Bill Ritchie @ ThinkFun sees this so that we can continue to evolve the best “hints” and unraveling of solution – Cheers! Andrea

  4. Thanks for this great post.I am a total beauty fallower and so will absolutely bookmark for

Leave a Reply