import java.util.List; public class FindKthLargest { /* 12.8 */ public static int findKth(List<Integer> list, int k) { return 0; } }