Files
2022-12-20 15:17:11 +01:00

18 lines
241 B
Go

package main
import (
"aoc2022/day20/common"
"bufio"
"fmt"
"os"
)
func main() {
arrangement := common.Parse(*bufio.NewScanner(os.Stdin))
arrangement.Mix(1)
x, y, z := arrangement.GetCoordinates()
fmt.Println(x + y + z)
}