Kth Smallest Prime Fraction
Try to solve the Kth Smallest Prime Fraction problem.
We'll cover the following
Statement
You are given a sorted array of unique integers, arr
, which includes the number
For every index arr.length
, you can form a fraction by taking the number at index arr[i] / arr[j]
.
Your task is to return the answer[0]
, is the numerator (arr[i]
), and the second element, answer[1]
, is the denominator (arr[j]
) corresponding to the
Constraints:
arr.length
is a prime number for All the numbers of
arr
are unique and sorted in strictly increasing order.arr.length
( arr.length
)
Examples
Level up your interview prep. Join Educative to access 70+ hands-on prep courses.