글
프로그래머스 C# 문자열 내 마음대로 정렬하기(string.OrderBy(), Linq)
프로그래밍
2023. 1. 22. 20:23
728x90
SMALL
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;
}
}
728x90
'프로그래밍' 카테고리의 다른 글
프로그래머스 C# 약수의 합(int형으로 가능) (0) | 2023.01.22 |
---|---|
프로그래머스 C# 소수 찾기(제곱근, 루트, 2~n, 2~root(n)) (0) | 2023.01.22 |
프로그래머스 C# 시저 암호((char)(), 96, 122) (0) | 2023.01.22 |
프로그래머스 C# 문자열 다루기 기본(Int32.TryParse(,)) (0) | 2023.01.22 |
프로그래머스 C# 문자열을 정수로 바꾸기(int.Parse) (0) | 2023.01.22 |