mirror of
https://github.com/onyx-and-iris/aoc2024.git
synced 2026-01-02 11:57:52 +00:00
9 lines
80 B
Go
9 lines
80 B
Go
package one
|
|
|
|
const noValue = -1
|
|
|
|
type zWire struct {
|
|
name string
|
|
value int
|
|
}
|