import java.util.*; public class Solution { public int findKth(int[] a, int n, int K) { // write code here Arrays.sort(a); //记录当前的数是第几大 int temp = 1; //遍历数组a for(int i =n-1 ;i>=0;i--){ //如果前面有重复的 跳过当前循环 if(i>0&&a...