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,7 @@
func main[] : i64
for a in 1..1000
for b in 1..1000
c := 1000 - b - a
if a * a + b * b == c * c
io.println_i64(a * b * c)
return 0