Hello guys! I need a little help, if someone can help me! :)
I use 2 arrays and i try to compare them.
ARRAY 1 (4,2,1)
---------------
0 = A,0
1 = B,0
3 = C,0
4 = D,0
ARRAY 2 (4,1,1)
---------------
0 = A
1 = C
3 = B
4 = C
So what means?
0 = Default
1 = Value exist in the same position for both arrays
2 = Value exist in different position
3 = Value not exist at all
So when check the example above will give us this result:
ARRAY 1 (4,2,1)
---------------
0 = A,1
1 = B,2
3 = C,2
4 = D,3
Some help please? Thank you!