Data update

This commit is contained in:
Ingy döt Net 2023-09-16 17:28:03 -07:00
parent 5af6d93694
commit 796d366b97
455 changed files with 7413 additions and 1900 deletions

View file

@ -5,7 +5,7 @@ proc test d[] . .
.
for i to len d[]
if cnt[i] <> d[i]
break 2
return
.
.
# found
@ -16,17 +16,17 @@ proc test d[] . .
.
proc backtr ind max . d[] .
if ind > len d[]
call test d[]
break 1
test d[]
return
.
for d = 0 to max
if d < 10
d[ind] = d
call backtr ind + 1 max - d d[]
backtr ind + 1 max - d d[]
.
.
.
for i = 1 to 10
len d[] i
call backtr 1 len d[] d[]
backtr 1 len d[] d[]
.