문제 설명
해결방안
using System;
using System.Linq;
public class Solution
{
public string[] solution(string[] strings, int n)
{
return strings.OrderBy(o => o[n]).ThenBy(t => t).ToArray();
}
}
'알고리즘' 카테고리의 다른 글
프로그래머스 C# 가장 가까운 글자 (0) | 2024.07.26 |
---|---|
프로그래머스 C# 두 개 뽑아서 더하기 (0) | 2024.07.25 |
프로그래머스 C# 숫자 문자열과 영단어 (0) | 2024.06.27 |
프로그래머스 C# 시저 암호 (0) | 2024.06.27 |
프로그래머스 C# 최소직사각형 (0) | 2024.06.27 |