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,6 @@
func main[] : i64
out := 1
for i in 1..21
out = math.lcm(out, i)
io.println_i64(out)