Skip to main content

Misc puzzles

Last updated: 5 Jan 2024 ·
Posted in wiki#notes

8-grid challenge

Put the numbers 1-8 in the grid such that no two consecutive digits touch each other horizontally, vertically or diagonally.

    +---+---+
    |   |   |
+---+---+---+---+
|   |   |   |   |
+---+---+---+---+
    |   |   |
    +---+---+
Solution
    +---+---+
    | 3 | 5 |
+---+---+---+---+
| 7 | 1 | 8 | 2 |
+---+---+---+---+
    | 4 | 6 |
    +---+---+

Three of each digit

For each digit from 0 to 9, use exactly three copies of that digit (and any valid arithmetic operations) to create an expression that evaluates to 6.

Solution

(0!+0!+0!)!=(0!+0!+0!)! =
(1+1+1)!=(1+1+1)! =
2+2+2=2+2+2 =
333=3*3-3 =
4+4+4=\sqrt{4}+\sqrt{4}+\sqrt{4} =
5/5+5=5/5+5 =
6+66=6+6-6 =
77/7=7-7/7 =
(83+8/8)!=(\sqrt[3]{8}+8/8)! =
999)=6\sqrt{9}*\sqrt{9}-\sqrt{9}) = 6

Soma cube solution

Soma cube solution