import java.util.*; public class Solution { public int findKth(int[] a, int n, int K) { // write code here return findKth_(a,0,n-1,K); } public static int findKth_(int[] arry,int low,int hei,int k){ /*if (hei-low<1){ return; }*/ int...