You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
package main
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"gitea.paas.celticinfo.fr/oabrivard/aoc2023/day12"
|
|
"gitea.paas.celticinfo.fr/oabrivard/aoc2023/utils"
|
|
)
|
|
|
|
func main() {
|
|
lines := utils.ReadLines("day12/input.txt")
|
|
|
|
result := day12.SumArragements4(lines)
|
|
|
|
fmt.Println(result)
|
|
}
|