Minigames: How to Solve
This guide is currently undergoing change. Keep in mind, strategies may change.
Table of contents
Overall settings #
These tips in general are very helpful when starting out and further down the line. These are not required, but do help, some more than others.
patience is not with me
15-Puzzle | Torus | Arrow | |
---|---|---|---|
Visual Scheme | Fringe | Insertion | Grayscale + Numbers |
Hover/Slide Control | Enabled | Enabled | - |
Animation | Disabled | Disabled | Disabled |
Minigame rewards #
The amount of stars the you get from completing a minigame is determined by your current dt and puzzle difficulty. This reward can be increased by using the Acceleration Button, also known as Accel. These are the base star reward for each difficulty level of each minigame.
15-Puzzle | Torus | Arrow | |
---|---|---|---|
Easy | 1 | 1 | 1 |
Medium | 3 | 8 | 8 |
Hard | 6 | 14 | 14 |
Expert | - | - | 25 |
15-Puzzle #
All Difficulties #
The algorithm goes as follows:
- Solve the top row.
- Solve the left column.
- Repeat Steps 1 and 2 for each additional layer until you reach the last 2x2.
- Solve last 2x2 by picking clockwise or counterclockwise and keep rotating until finish.
- This size does not matter which direction gaurunteeing finish in 4 or less full rotations.
- However, in most cases, there is a better direction to spin but is less important than the previous steps.
This algorithm works for all difficulties and is a greater impact on the larger boards than smaller boards.
Example #
Torus Puzzle #
Easy #
The algorithm goes as follows:
- Solve each row up to the 2nd number.
- Solve top row for 1 and 2.
- Solve middle row for 4 and 5.
- Solve bottom row for 7 and 8.
- Move the final column up or down to finish.
Example #
Medium #
The algorithm goes as follows:
- Solve each row until the last column.
- Solve first row for 1 2 3 4.
- Solve secopnd row for 6 7 8 9.
- Continue solving like a and b for the remaining rows.
- Solve right column with swaps.
- Find a number in the column that is in the wrong position.
- Move the piece into your row left.
- Move this piece from your row into the correct position.
- Repeat a through c until all pieces are in the correct position.
- Move the right column until up or down until solved.
Be careful to not end up with a mixed up row (ex: 18 19 15 16) after swapping.
Example #
Hard #
The algorithm goes as follows:
- Solve each row until the last column.
- Solve first row for 1 2 3 4 5.
- Solve second row for 7 8 9 10 11.
- Continue solving like a and b for the remaining rows.
- Solve last column parity case.
- Find a number in the column that is in the wrong position.
- Do repeated swaps of those numbers by following this.
- Pick which numbers you are going to swap.
- Move the top number into the row next to it.
- Move the column up to reach the bottom number.
- Insert the bottom number into the row next to the top number.
- Repeat ↓ ← ↑ ← until numbers are successfully swapped.
- Repeat b until that number is in the correct position.
- Repeat a through c until all numbers are in the correct position.
- Move the last column up or down until solved.
Example #
Arrow Puzzle #
Easy #
The algorithm goes as follows:
- Solve top row then the middle tapping tiles below the row.
- Make the center tile of a row the same as one edge tile.
- Make the row all the same number.
- Solve the row.
- Solve bottom row the same way but using the middle row.
- Using the top row, finish the solve.
Example #
Medium #
The algorithm goes as follows:
- Solve the top three rows after another tapping tiles below the row.
- Make the center tile the same as its adjacent edge tile.
- Make the other center tile the same as its adjacent edge tile.
- Solve the left two tiles by pressing.
- Solve the right two tiles by pressing.
- Solve the bottom row the same way but by using the bottom row itself.
- Using the first and second row, finish the solve.
Tip: When you solve during step 2, tap the first row the same number of times as the bottom row. You can then use row 2 to finish the solve.
Example #
Propagation (for Hard and Expert) #
The algorithm goes as follows:
- Solve the rop row tapping tiles directly below the row.
- Solve the center tile.
- Solve the tile to the left of the center tile.
- Solve the tile two spaces to the left of the center tile.
- Solve the tile three spaces to the left of the center tile.
- Repeat steps b-d but to the right of the center tile.
- Repeat step 1 for every row until the bottom row (don't solve bottom row).
To verify there is no mistake:
- When you are done, your board will be symmetric.
- The two tiles adjacent to the bottom center tile wll always be 1 or 4.
Example #
Hard and Expert #
You will want to read how to propagate before continuing. The algorithm goes as follows:
- propagate.
- Label the bottom right cells (from left to right): A, B, C, D. Label the top right cells (from left to right): a, b, c, d. We will be tapping the top row to encode the bottom row onto it.
- Tap a so that a is the same as C.
- Tap b and d the number of times you will need to solve C.
- Tap a the number of times you would need to solve D.
- If B + D is odd, tap c three times (once in Hard). Otherwise, skip this step.
- propagate from top once more to finish the solve.