Array ‘arr1’
0 1 1
Array ‘arr2’
1 1 0 1
0 1 1 1
1 0 0 1
0 0 1 1
0 0 0 0
1 1 0 0
0 0 1 0
1 0 1 0
Could Any body tell me how can I find out which index of ‘arr2’ contain the matching binary data as arr1 contain. Below I have tried to declear and initilize two arry with random data but I am not beeing able to proceed further. Looking forward for suggestions.
CODE
Dim arrMemory(3) As Integer
Dim arrStrategies(7, 3) As Integer
For i = 0 To 2
arrMemory(i) = (rndRandom.Next(2))
Next
For i = 0 To 7
For x = 0 To 3
arrStrategies(i, x) = (rndRandom.Next(2))
Next
Next