Question: Given two arrays of integers, compute the pair of values (one value in each array) with the smallest (non-negative) difference. Return the difference. Example, input: {1, 3, 15, 11, 2}, {23, 127, 235, 19, 8} Output: 3. That is the pair (11, 8).