Let's say that I have a 9-by-9 2-D array. Is there a difference between looping through with a single loop or multiple loops?
for (int i = 0; i < 81; i++)
currentEdit[i / 9][i % 9] = 0;
VS.
for (int i = 0; i < 9; i++)
for (int j = 0; j < 9; j++)
currentEdit[i][j] = 0;