문제풀이)프로그래머스)C#) K 번째 수
K 번째 수 URL :https://programmers.co.kr/learn/courses/30/lessons/42748 코딩테스트 연습 - K번째수 [1, 5, 2, 6, 3, 7, 4] [[2, 5, 3], [4, 4, 1], [1, 7, 3]] [5, 6, 3] programmers.co.kr 처음 푼 문제인데. 문제가 너무 난해해서 문제를 파악하는데 오래 걸렸다. array를 commands의 데이터를 기반으로 정렬 후 인덱스를 가져오는 문제였다. public int[] Solution(int[] array, int[,] commands) { int maxCount = commands.GetLength(0); int[] answer = new int[maxCount]; for(int i =0;i..
2020. 8. 18.