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,9 @@
func main[] : i64
n := 40
r := 20
out := 1
for i in 1..r+1
out = out * (n - (r - i)) / i
io.println_i64(out)