mirror of
https://github.com/onyx-and-iris/aoc2024.git
synced 2025-01-10 14:50:46 +00:00
11 lines
156 B
Go
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}
|
||
|
}
|