package cmp func FindMaxInt64(intList []int64) int64 { max := intList[0] for _, item := range intList { if max < item { max = item } } return max }