모의고사 문제 1, 2, 3번째의 반복되는 답변이 해당 문제의 해답과 가장 많이 맞는 사람을 출력. 만약 문제가 동일하면 오름차순. import java.util.*; import java.util.stream.Collectors; import java.util.stream.Stream; public class Solution { public int[] solution(int[] answers){ int[] stu1 = new int[]{1, 2, 3, 4, 5}; int[] stu2 = new int[]{2, 1, 2, 3, 2, 4, 2, 5}; int[] stu3 = new int[]{3, 3, 1, 1, 2, 2, 4, 4, 5, 5}; int score1 = 0; int score2 = 0; i..