package utils func MinInt(x, y int) int { if x < y { return x } return y } func MaxInt(x, y int) int { if x > y { return x } return y }