Hey guys, say I have these two arrays:
A = ["1" "2" "3" "4"];
B = ["1" "2" "3" "4" "5" "6"];
Then I can use “setdiff” to find the elements which they do not have in common as such:
C = setdiff(B,A)
2-element Array{String,1}:
"5"
"6"
My question is then, would it be possible to get the indices instead? Note the example is string based.
Kind regards