Simple Array Sum in Go
Hello again! I saw a problem in HackerRank to sum an array of elements. I have done this before in a couple of languages, but never in Go, so I was not sure exactly what to do. I coded the solution and it is: package main import "fmt" func main() { var n uint32 fmt.Scanf("%d\n", &n) sum := 0 current := 0 for n > 0 { fmt.Scanf("%d", ¤t) sum += current n-- } fmt.Printf("%d\n", sum) } Here I run the program and I see a correct solution: ...