nex-go/sum.go
2022-03-29 00:15:55 -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
}