728x90
반응형
https://programmers.co.kr/learn/courses/30/lessons/12915
using System.Linq;
public class Solution {
public string[] solution(string[] strings, int n) {
string[] answer = new string[] {};
answer = strings.OrderBy(x => x).OrderBy(x => x[n]).ToArray();
return answer;
}
}
오름차순으로 정렬하고 index에 맞게 한번 더 정렬
https://docs.microsoft.com/ko-kr/dotnet/api/system.linq.enumerable.orderby?view=net-5.0
반응형
'프로그래머스_C# > Level_1' 카테고리의 다른 글
[프로그래머스 C#] 가운데 글자 가져오기 (0) | 2021.09.02 |
---|---|
[프로그래머스 C#] 두 정수 사이의 합 (0) | 2021.09.02 |
[프로그래머스 C#] 나누어 떨어지는 숫자 배열 (0) | 2021.09.01 |
[프로그래머스 C#] 문자열 다루기 기본 (0) | 2021.08.31 |
[프로그래머스 C#] 문자열 내림차순으로 배치하기 (0) | 2021.08.31 |