aoc2024/day-24/internal/one/zwire.go

9 lines
80 B
Go
Raw Normal View History

2024-12-25 14:46:40 +00:00
package one
const noValue = -1
type zWire struct {
name string
value int
}