[프로그래머스] K번째 수 [Java/자바]
문제:https://programmers.co.kr/learn/courses/30/lessons/42748 코드:https://github.com/irerin07/AlgorithmStudyBaek/blob/master/src/programmers_lvl_1/programmers42748.java import java.util.Arrays; public class programmers42748 { 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[] answer = solution(array, commands); }..
2019. 9. 25.