9 lines
183 B
Text
9 lines
183 B
Text
arr[][] = [ [ 2 12 10 4 ] [ 18 11 20 2 ] ]
|
|
for i to len arr[][]
|
|
for j to len arr[i][]
|
|
if arr[i][j] = 20
|
|
print "20 at " & i & "," & j
|
|
break 2
|
|
.
|
|
.
|
|
.
|