Initial data commit

This commit is contained in:
Ingy döt Net 2023-07-01 11:58:00 -04:00
parent 72d218235f
commit f23f22d71c
199087 changed files with 3378941 additions and 0 deletions

View file

@ -0,0 +1,8 @@
d = {}
for p in range(1, 100)
for t in range(p, 100, p)
if d.hasIndex(t) then d.remove t else d.push t
end for
end for
print d.indexes.sort

View file

@ -0,0 +1,10 @@
d = [false] * 101
open = []
for p in range(1, 100)
for t in range(p, 100, p)
d[t] = not d[t]
end for
if d[p] then open.push p
end for
print open