aoc2024/day-09/internal/one/block.go

9 lines
73 B
Go

package one
const empty = -1
type block struct {
used int
free int
}