package util func Abs(x int) int { if x < 0 { return -x } return x } func Min(i, j int) int { if i < j { return i } return j }