Problem: A school has to decide on its team for an international quiz. There are students in the school. We can describe the students using an array where is the smartness of the -th () student.
There are topics from which the quiz questions will be formed. The -th student is considered proficient in a topic if . Otherwise, he is a rookie in that topic.
We say that a team of students is collectively proficient in all the topics if for every topic there is a member of the team proficient in this topic.
Find a team that is collectively proficient in all the topics such that the maximum difference between the smartness of any two students in that team is minimized. Output this difference.
Input Format: Each test contains multiple test cases. The first line contains the number of test cases (). The description of the test cases follows.
The first line of each test case contains and ().
The second line of each test case contains integers ().
It is guaranteed that the sum of over all test cases does not exceed .
It is guaranteed that the sum of over all test cases does not exceed .
Output Format: For each test case, print the answer on a new line. If there is no solution, output .
Note: In the first test case, we have participants with smartnesses and , and . Thus, there is no student with smartness divisible by . Since , there is no way to choose a team.
In the second test case, we can select the participant with smartness to be the only one on the team. This way the team will be collectively proficient in both topics and .
In the third test case, consider the team with participants of smartnesses . This way the team will be collectively proficient in all topics .