Added solutions for 18th day: snailfish arithmetic

This commit is contained in:
Julien Dessaux 2021-12-20 23:15:56 +01:00
parent 3f49055c82
commit 1108812492
8 changed files with 487 additions and 0 deletions

35
2021/18/second.go Normal file
View file

@ -0,0 +1,35 @@
package main
import (
"fmt"
"os"
"git.adyxax.org/aoc/2021/18/pairs"
)
func main() {
max := 0
parser := pairs.NewParser(os.Stdin)
pairs := make([]*pairs.Pair, 0)
for {
pair, err := parser.Parse()
if err != nil {
break
}
pairs = append(pairs, pair)
}
l := len(pairs)
for i := 0; i < l; i++ {
for j := 0; j < l; j++ {
if i == j {
continue
}
p1 := pairs[i].DeepCopy()
p2 := pairs[j].DeepCopy()
if m := p1.Add(p2).Magnitude(); max < m {
max = m
}
}
}
fmt.Println(max)
}