코드카타48) K번째수 정렬나의 풀이import java.util.*;class Solution { public int[] solution(int[] array, int[][] commands) { int[] answer = new int[commands.length]; List answerList = new ArrayList(); List answerList2 = new ArrayList(); for (int i = 0; i 리스트에 저장해서 계속 내용을 삭제해 주었다. 다른 분들의 풀이import java.util.Arrays;class Solution { public int[] solution(int[] array, int[][] com..