package utils func Min(a, b int) int { if a <= b { return a } else { return b } }