Concept Flow - np.setdiff1d() for difference
Input: array1, array2
Find elements in array1
Check if element NOT in array2
Yes No
Keep element
Return sorted unique difference array
np.setdiff1d() takes two arrays and returns sorted unique elements from the first array that are not in the second.