Smallest Difference

A corgi smiling happily

Write a function that takes in two non-empty arrays of integers, finds the pair of numbers (one from each array) whose absolute difference is closest to zero, and returns an array containing these two numbers, with the number from the first array in the first position.

Note that the absolute difference of two integers is the distance between them on the real number line. For example, the absolute difference of -5 and 5 is 10, and the absolute difference of -5 and -4 is 1.

You can assume that there will only be one pair of numbers with the smallest difference.

Sample Input

1arrayOne = [-1, 5, 10, 20, 28, 3]
2arrayTwo = [26, 134, 135, 15, 17]

Sample Output

1[28, 26]

Hints

Hint 1

Instead of generating all possible pairs of numbers, try somehow only looking at pairs that you know could actually have the smallest difference. How can you accomplish this?

Hint 2

Would it help if the two arrays were sorted? If the arrays were sorted and you were looking at a given pair of numbers, could you efficiently find the next pair of numbers to look at? What are the runtime implications of sorting the arrays?

Hint 3

Start by sorting both arrays, as per Hint #2. Put a pointer at the beginning of both arrays and evaluate the absolute difference of the pointer-numbers. If the difference is equal to zero, then you’ve found the closest pair; otherwise, increment the pointer of the smaller of the two numbers to find a potentially better pair. Continue until you get a pair with a difference of zero or until one of the pointers gets out of range of its array.

Optimal Space & Time Complexity

O(nlog(n) + mlog(m)) time | O(1) space - where n is the length of the first input array and m is the length of the second input array

Solution-1
1function smallestDifference(arrayOne, arrayTwo) {
2 // Write your code here.
3
4 let returningArray = {}
5 for (let one of arrayOne) {
6 for (let two of arrayTwo) {
7 returningArray[Math.abs(one - two)] = [one, two]
8 }
9 }
10 return returningArray[Math.min(...Object.keys(returningArray))]
11}
Solution-2
1// O(nLog(n) + mLog(m)) time | O(1) space
2function smallestDifference(arrayOne, arrayTwo) {
3 // Write your code here.
4 let pointerOne = 0, pointerTwo = 0, difference = Infinity;
5
6 arrayOne.sort((a, b) => a - b)
7 arrayTwo.sort((a, b) => a - b)
8 let minDiff = Infinity
9 let minSet = []
10
11 while (pointerOne < arrayOne.length && pointerTwo < arrayTwo.length) {
12 let one = arrayOne[pointerOne]
13 let two = arrayTwo[pointerTwo]
14
15 if (one < two) {
16 difference = two - one
17 pointerOne++
18 } else if (two < one) {
19 difference = one - two
20 pointerTwo++
21 } else {
22 return [one, two]
23 }
24
25 if (difference < minDiff) {
26 minDiff = difference
27 minSet = [one, two]
28 }
29 }
30
31 return minSet
32
33}

⚾️

Do you have any questions, or simply wish to contact me privately? Don't hesitate to shoot me a DM on Twitter.

Have a wonderful day.
Abhishek 🙏

Subscribe to my newsletter

Get email from me about my ideas, full-stack development resources, tricks and tips as well as exclusive previews of upcoming articles.

No spam. Just the highest quality ideas you’ll find on the web.