40 lines
1.8 KiB
Plaintext
40 lines
1.8 KiB
Plaintext
;Task:
|
|
Replace '''a, b, c, d, e, f,''' and
|
|
'''g ''' with the decimal
|
|
digits LOW ───► HIGH
|
|
<br>such that the sum of the letters inside of each of the four large squares add up to
|
|
the same sum.
|
|
|
|
<pre>
|
|
╔══════════════╗ ╔══════════════╗
|
|
║ ║ ║ ║
|
|
║ a ║ ║ e ║
|
|
║ ║ ║ ║
|
|
║ ┌───╫──────╫───┐ ┌───╫─────────┐
|
|
║ │ ║ ║ │ │ ║ │
|
|
║ │ b ║ ║ d │ │ f ║ │
|
|
║ │ ║ ║ │ │ ║ │
|
|
║ │ ║ ║ │ │ ║ │
|
|
╚══════════╪═══╝ ╚═══╪══════╪═══╝ │
|
|
│ c │ │ g │
|
|
│ │ │ │
|
|
│ │ │ │
|
|
└──────────────┘ └─────────────┘
|
|
</pre>
|
|
|
|
Show all output here.
|
|
|
|
|
|
:* Show all solutions for each letter being unique with
|
|
LOW=1 HIGH=7
|
|
:* Show all solutions for each letter being unique with
|
|
LOW=3 HIGH=9
|
|
:* Show only the ''number'' of solutions when each letter can be non-unique
|
|
LOW=0 HIGH=9
|
|
|
|
|
|
;Related task:
|
|
* [[Solve the no connection puzzle]]
|
|
<br><br>
|
|
|