Data update

This commit is contained in:
Ingy döt Net 2025-06-11 20:16:52 -04:00
parent 72eb4943cb
commit 4d5544505c
2347 changed files with 62432 additions and 16731 deletions

View file

@ -3,7 +3,7 @@ len col[] 90
len box[] 90
len grid[] 82
#
proc init . .
proc init .
for pos = 1 to 81
if pos mod 9 = 1
s$ = input
@ -31,7 +31,7 @@ proc init . .
.
init
#
proc display . .
proc display .
for i = 1 to 81
write grid[i] & " "
if i mod 3 = 0
@ -46,7 +46,7 @@ proc display . .
.
.
#
proc solve pos . .
proc solve pos .
while grid[pos] <> 0
pos += 1
.