package q03 func solveP1(nums [][]int) (sum int) { for _, row := range nums { for _, n := range row { sum += n } } return }