[항해99] 프로그래머스 알고리즘 연습하기 (2)
이번에는 챌린지 문제 중 어려웠던 문제를 다시 리뷰해보려고 한다. 28문제 중 4문제 밖에 풀지 못했는데, 생각보다 어려웠던 것 같다. ※ K번째 수 정렬 - 풀었으나 어려움 작성 코드 public static void main(String[] args) { int[] array = {1, 5, 2, 6, 3, 7, 4}; int[][] commands = {{2, 5, 3}, {4, 4, 1}, {1, 7, 3}}; int s = 2; int j = 5; int k = 3; System.out.println(Arrays.toString(solution(array, commands))); } public static int[] solution(int[] array, int[][] commands) { /..