aoc21/d12/p1.go

6 lines
137 B
Go
Raw Normal View History

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