I have two arrays:
array_main = [23432, 3434, 312, 32432]
array_second = [23432, 312]
I want to replace the elements in array_main with 0 matching the elements of array_second, so the output should look like:
array_main = [0, 3434, 0, 32432]
How do I do it?