In the current repository, gotour/solutions/slices.go of revision
"afef612d0519" is like (line 15 ~ 19):
for y := range p {
for x, row := range p[y] {
row[x] = uint8(x * y)
}
}
But it should be:
for y := range p {
row := p[y]
for x := range row {
row[x] = uint8(x * y)
}
}
Original issue reported on code.google.com by Ken...@gmail.com on 23 Nov 2012 at 6:41
Original issue reported on code.google.com by
Ken...@gmail.com
on 23 Nov 2012 at 6:41