aoc21/d12/p2.go

6 lines
138 B
Go
Raw Normal View History

2022-05-04 18:03:29 +03:00
package d12
func P2(input string) int {
return countPaths(createMap(getPairs(getLines(input))), "start", make(map[string]int), false)
}