Implement Min(x, y int) and Max(x, y int) functions that take two integers and return the lesser or greater value, respectively.
Solution
By default, Go only supports min and max for floats using math.min and math.max. You’ll have to create your own implementations to make it work for integers.
package main
import "fmt"
// Min returns the smaller of x or y.
func Min(x, y int) int {
if x > y {
return y
}