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,11 @@
func main[] : i64
found := 0
i := 1
while true
if i->is_prime()
found += 1
if found == 10001
io.println_i64(i)
break
i += 1