nex-go/v1/sum.go
2022-03-27 19:59:17 -04:00

11 lines
128 B
Go

package nex
func sum(slice []byte) int {
total := 0
for _, value := range slice {
total += int(value)
}
return total
}