I have a two dimensional array with width 25 and height 3. The values are randomly assigned. How do I look for the instance of the array when the value is 1,0,0 and replace it with 1,1,0? In the debug display example below the line I need to change is line (IID?) 14.
.
.
12 8,9,0
13 19,10, 0
14 1,0,0
15 22,11,0
16 6,3,0
should be changed into
12 8,9,0
13 19,10, 0
14 1,1,0
15 22,11,0
16 6,3,0
I've been trying in vain. Thanks in advance.