[프로그래머스] K번째 수 자바 java
해당 조건을 해결하기 위해 2중 반복문과 슬라이싱을 적절하게 섞어서 사용하였다. package programmers; import java.util.Arrays; public class KNumber { public static void main(String[] args) { Solution12 s = new Solution12(); int[] array = {1, 5, 2, 6, 3, 7, 4}; int[][] commands = {{2, 5, 3}, {4, 4, 1}, {1, 7, 3}}; s.solution(array, commands); } } class Solution12 { public int[] solution(int[] array, int[][] commands) { // 예를 들어 arr..