Skip to content

Commit bb60972

Browse files
committed
embedd cube meshes into verbatim blocks
1 parent d2f8cb4 commit bb60972

File tree

1 file changed

+13
-3
lines changed

1 file changed

+13
-3
lines changed

solutions/solutions.org

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ The nine colors of the cube are (b)lack, (w)hite, (y)ellow, (o)range, (d)ark-lue
88
For the following discussion I assume the following gird:
99

1010

11-
11+
#+begin_src text
1212
+---+---+---+
1313
| | | |
1414
+---+---+---+
@@ -37,7 +37,7 @@ For the following discussion I assume the following gird:
3737
+---+---+---+
3838
| | | |
3939
+---+---+---+
40-
40+
#+end_src
4141

4242
Adjacent colors: yellow, light-blue, orange, blue
4343
From this follow the opposite colors: yellow-orange, light-blue-blue, white-black
@@ -50,30 +50,36 @@ There are the following distinctions when categorizing solutions:
5050
There are three possible positions to place the two colors on the white face
5151
2 adjacent and 1 diagonal placement (here at the example of orange and dark-blue):
5252

53-
adjacent 1:
53+
adjacent 1:
54+
#+begin_src text
5455
+---+---+---+
5556
| d | | o |
5657
+---+---+---+
5758
| | w | |
5859
+---+---+---+
5960
| | | |
6061
+---+---+---+
62+
#+end_src
6163
adjacent 2:
64+
#+begin_src text
6265
+---+---+---+
6366
| o | | |
6467
+---+---+---+
6568
| | w | |
6669
+---+---+---+
6770
| d | | |
6871
+---+---+---+
72+
#+end_src
6973
diagonal
74+
#+begin_src text
7075
+---+---+---+
7176
| | | o |
7277
+---+---+---+
7378
| | w | |
7479
+---+---+---+
7580
| d | | |
7681
+---+---+---+
82+
#+end_src
7783

7884
It needs to be further clarified how many possible solutions ervery type permits.
7985

@@ -82,19 +88,23 @@ There are the following distinctions when categorizing solutions:
8288
1. The two corners can only be placed diagonally on the face in two different positions:
8389

8490
diagonal1
91+
#+begin_src text
8592
+---+---+---+
8693
| d | | |
8794
+---+---+---+
8895
| | w | |
8996
+---+---+---+
9097
| | | l |
9198
+---+---+---+
99+
#+end_src
92100
diagonal2
101+
#+begin_src text
93102
+---+---+---+
94103
| | | l |
95104
+---+---+---+
96105
| | w | |
97106
+---+---+---+
98107
| d | | |
99108
+---+---+---+
109+
#+end_src
100110

0 commit comments

Comments
 (0)