I was wondering..is this the best way to get the result of values which appear in each array but not both???
a = [1, 2, 3, 4]
b = [1, 2, 3, 5]
c = (a - b) + (b - a)
..means c = [4, 5]
How to do this in OFP scripting? Just like that, right...but is there an easier way?
Doolittle