https://school.programmers.co.kr/learn/courses/30/lessons/77484 프로그래머스SW개발자를 위한 평가, 교육, 채용까지 Total Solution을 제공하는 개발자 성장을 위한 베이스캠프programmers.co.kr public int[] solution(int[] lottos, int[] win_nums) { int[] answer = new int[2]; int countZ = 0; // 0 개수 int countNum = 0; // 맞춘 숫자 for (int i = 0; i 1) { // 최대 등수 구하기 answer[0] = answer[1] - countZ; } else { answer[0] =..