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