JAVA-배열복사
public class kNumber { public static void main(String[] args) { Solution solution = new Solution(); int[] array ={1, 5, 2, 6, 3, 7, 4}; int[][] commands ={{2, 5, 3}, {4, 4, 1}, {1, 7, 3}}; int[] solution1 = solution.solution(array, commands); for (int i = 0; i //int[] arraycopy = array.clone(); int first = commands[i][0]; int last = commands[i][1]; int order = commands[i][2]; for (int j = first ..