Okay, I am running into a problem with copying integers into a 2D array. I am making a sudoku table with 0's in the empty slots to set it up, then am taking a .txt file with two indices and a value (ie: 0 1 5) would put 5 in the 1 slot of the 0 row, the problem is that whenever I encounter a (X 0 A) it overwrites the (X-1 8 B) slot so it is (X-1 8 A).
I'm sure it's something absolutely stupid and obvious I'm missing.