import java.util.*; public class Solution { public int findKth(int[] a, int n, int K) { // write code here quickSort(a, 0, n - 1, n - K); return a[n - K]; } private void quickSort(int[] arr, int start, int end, int index){ if(start < end){ ...