aoc2024/day-24/internal/one/zwire.go
2024-12-25 14:46:40 +00:00

9 lines
80 B
Go

package one
const noValue = -1
type zWire struct {
name string
value int
}