Class Solution
- java.lang.Object
-
- g2501_2600.s2523_closest_prime_numbers_in_range.Solution
-
public class Solution extends Object
2523 - Closest Prime Numbers in Range.Medium
Given two positive integers
leftandright, find the two integersnum1andnum2such that:left <= nums1 < nums2 <= right.nums1andnums2are both prime numbers.nums2 - nums1is the minimum amongst all other pairs satisfying the above conditions.
Return the positive integer array
ans = [nums1, nums2]. If there are multiple pairs satisfying these conditions, return the one with the minimumnums1value or[-1, -1]if such numbers do not exist.A number greater than
1is called prime if it is only divisible by1and itself.Example 1:
Input: left = 10, right = 19
Output: [11,13]
Explanation: The prime numbers between 10 and 19 are 11, 13, 17, and 19.
The closest gap between any pair is 2, which can be achieved by [11,13] or [17,19].
Since 11 is smaller than 17, we return the first pair.
Example 2:
Input: left = 4, right = 6
Output: [-1,-1]
Explanation: There exists only one prime number in the given range, so the conditions cannot be satisfied.
Constraints:
1 <= left <= right <= 106
-
-
Constructor Summary
Constructors Constructor Description Solution()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int[]closestPrimes(int left, int right)
-