Can I find the index of the changed value by comparing two arrays?
For exaple;
array1 = [1, 2 ,3]
array2 = [1, 2, 4]
I want to find the index of the changing value by comparing these two arrays. For this example this should be 2.
I am using numpy to compare two arrays. But I can't find the index of changed value(s).