aoc21/d14/p2.go

6 lines
69 B
Go
Raw Normal View History

2022-05-11 00:09:37 +03:00
package d14
func P2(in string) int {
return countPolymer(in, 40)
}