mirror of
https://github.com/onyx-and-iris/aoc2024.git
synced 2025-01-10 06:40:47 +00:00
9 lines
73 B
Go
9 lines
73 B
Go
package one
|
|
|
|
const empty = -1
|
|
|
|
type block struct {
|
|
used int
|
|
free int
|
|
}
|