1. 내 풀이미리 정렬을 해놓음으로서 탐색을 좀 더 용이하게 만들었다.import java.util.Arrays;class Solution { public int[] solution(int[] lottos, int[] win_nums) { int[] answer = new int[2]; Arrays.sort(lottos); Arrays.sort(win_nums); int correctLotto = 0; int zeroCount = 0; for(int i = 0, j = 0; i 1; case 5 -> 2; case 4 -> 3; case 3 -> 4;..