Implementation of the complement operation for arrays.
int[] arr = calcComplement([3, 4, 1, -15], [9, 3, 1]); assert(arr == [-15, 4]);
See Implementation
Implementation of the complement operation for arrays.