반응형 정렬 프로그래밍/기타 2021. 1. 15. 프로그래머스 - 가장 큰 수 (c#) using System; using System.Linq; using System.Text; public class Solution { public string solution(int[] numbers) { string[] numbersString = new string[numbers.Length]; for (int i = 0; i string.Compare(y + x, x + y)); StringBuilder sb = new StringBuilder(); for (int i = 0; i < numbersString.. 프로그래밍/기타 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 이전 1 다음 반응형