Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Sorting is useful as the first step in many different tasks. The most common task is to make finding things easier, but there are other
Sorting is useful as the first step in many different tasks. The most common task is to make finding
things easier, but there are other uses as well. In this case, it will make it easier to determine which
pair or pairs of elements have the smallest absolute difference between them.
Example
arr
Sorted, arr Several pairs have the minimum difference of :
Return the array
Note
As shown in the example, pairs may overlap.
Given a list of unsorted integers, arr find the pair of elements that have the smallest absolute
difference between them. If there are multiple pairs, find them all.
Function Description
Complete the closestNumbers function in the editor below.
closestNumbers has the following parameters:
int arr: an array of integers
Returns
int: an array of integers as described
Input Format
The first line contains a single integer the length of arr.
The second line contains spaceseparated integers, arr
Constraints
arr
All are unique in arr.
Output Format
Explanation
which is the smallest difference.
Explanation
which is the smallest difference.
Explanation
Here, the minimum difference is Valid pairs are and
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started