Range continued
Don’t need both the index and value? Use _ to discard whichever one you don’t want.
for i, _ := range pow
for _, value := range pow
If you only want the index, drop the second variable entirely:
for i := range pow
Try it: Change the first loop to use _ for the index and print only the computed values.