解决方案一: publicclassSolution {//Complete the compareTriplets function below.staticList<Integer> compareTriplets(List<Integer> a, List<Integer>b) { List<Integer> win =newLinkedList<Integer>();intpointsAlice = ((a.get(0)>b.get(0))?1:0)+ ((a.get(1)>b.get(1))?1:0)+ ((a.get(...