remove aoc solutions

This commit is contained in:
2026-06-07 09:35:29 +02:00
parent a9bd4fe9f9
commit 7ee9a860f3
31 changed files with 2 additions and 495 deletions

View File

@@ -0,0 +1,13 @@
func main[] : i64
out := 0
for a in 500..1000
for b in 500..1000
if a * b > out
s := (a * b)->to_str()
s_rev := s->reverse()
if s->equal(s_rev)
out = a * b
s->free()
s_rev->free()
io.println_i64(out)