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

9 lines
73 B
Go
Raw Normal View History

2024-12-10 21:42:26 +00:00
package one
const empty = -1
type block struct {
used int
free int
}