remove aoc solutions

This commit is contained in:
2026-06-07 09:36:21 +02:00
parent a9bd4fe9f9
commit 802a6d8b53
31 changed files with 4 additions and 497 deletions

View File

@@ -0,0 +1,11 @@
func main[] : i64
n := 600851475143
f := 2
while f * f <= n
if n % f == 0
n = n / f
else
f += 1
io.println_i64(n)