package util func IntMin(x, y int) int { if x < y { return x } return y }