Files
aoc2024/day-07/internal/one/equation.go
2024-12-07 23:39:28 +00:00

11 lines
156 B
Go

package one
type equation struct {
target int
operands []int
}
func newEquation(res int, operands []int) equation {
return equation{res, operands}
}