Created Simple Loop (markdown)
commited
commit
de284b4c8c2c07852e1ae9341008275af4ad8e63
... | ... | @@ -0,0 +1,86 @@ |
1 | Simple Loop is a puzzle game where you draw a single loop that passes through all unshaded cells. |
|
2 | ||
3 | # Rules |
|
4 | ||
5 | Draw lines by dragging between unshaded cells. To win, these criterias must be met: |
|
6 | ||
7 | - There are no intersecting, branching, or dead-end lines. |
|
8 | - The loop must pass through all unshaded cells. |
|
9 | - There is only one loop. |
|
10 | ||
11 | The game will mark errors when found. |
|
12 | ||
13 | # Tips and Tricks |
|
14 | ||
15 | In every solved Simple loop puzzle, there are always 2 lines going through a cell. Therefore these basic deductions can be made: |
|
16 | ||
17 | [[/uploads/simpleloop-tips-1a.png | height=300px]] |
|
18 | ||
19 | Using the only one loop rule, this basic deduction can also be made: |
|
20 | ||
21 | [[/uploads/simpleloop-tips-1b.png | height=150px]] |
|
22 | ||
23 | -------------- |
|
24 | ||
25 | In solving harder Simple Loop puzzles, a bit of visualization must be made. Take a look at this common pattern: |
|
26 | ||
27 | [[/uploads/simpleloop-tips-2a.png | height=200px]] |
|
28 | ||
29 | Basic deductions are shown. |
|
30 | ||
31 | [[/uploads/simpleloop-tips-2b.png | height=200px]] |
|
32 | ||
33 | Now imagine there was no line (indicated by ×) in the above picture. Then, this is forced to be a single loop. Therefore there must be a line here: |
|
34 | ||
35 | [[/uploads/simpleloop-tips-2c.png | height=200px]] |
|
36 | ||
37 | You can do chains of deductions using this logic: |
|
38 | ||
39 | [[/uploads/simpleloop-tips-2d.png | height=200px]] |
|
40 | ||
41 | Imagine there was no line here. Then it is forced to be a single loop once again: |
|
42 | ||
43 | [[/uploads/simpleloop-tips-2e.png | height=200px]] |
|
44 | ||
45 | -------------- |
|
46 | ||
47 | Similarly: |
|
48 | ||
49 | [[/uploads/simpleloop-tips-3a.png | height=175px]] |
|
50 | ||
51 | Basic deductions shown. |
|
52 | ||
53 | [[/uploads/simpleloop-tips-3b.png | height=175px]] |
|
54 | ||
55 | With the cross mark shown above, the loop is forced to close with incomplete cells. |
|
56 | ||
57 | [[/uploads/simpleloop-tips-3c.png | height=175px]] |
|
58 | ||
59 | -------------- |
|
60 | ||
61 | Another pattern that might show: |
|
62 | ||
63 | [[/uploads/simpleloop-tips-4a.png | height=150px]] |
|
64 | ||
65 | Basic deductions applied. |
|
66 | ||
67 | [[/uploads/simpleloop-tips-4b.png | height=150px]] |
|
68 | ||
69 | With cross mark shown, lines get forced like this, and the marked cell (in red) can only have dead-end lines, giving this: |
|
70 | ||
71 | [[/uploads/simpleloop-tips-4c.png | height=150px]] |
|
72 | ||
73 | -------------- |
|
74 | ||
75 | Lastly: |
|
76 | ||
77 | [[/uploads/simpleloop-tips-5a.png | height=200px]] |
|
78 | ||
79 | Basic deductions. |
|
80 | ||
81 | [[/uploads/simpleloop-tips-5b.png | height=200px]] |
|
82 | ||
83 | Without a line here (×), the marked cell becomes a dead-end: |
|
84 | ||
85 | [[/uploads/simpleloop-tips-5c.png | height=200px]] |
|
86 |