프로그래밍/기타
2021. 1. 14.
프로그래머스 - K번째수 (C#)
using System; using System.Collections.Generic; public class Solution { public int[] solution(int[] array, int[,] commands) { int length = commands.GetLength(0); int[] answer = new int[length]; List sortingList = new List(); int index = 0; for(int i =0; i