문자열로 구성된 리스트 strings
와, 정수 n
이 주어졌을 때, 각 문자열의 인덱스 n
번째 글자를 기준으로 오름차순 정렬하려 합니다. 예를 들어 strings
가 ["sun", "bed", "car"]이고 n
이 1이면 각 단어의 인덱스 1의 문자 "u", "e", "a"로 strings를 정렬합니다.
strings
는 길이 1 이상, 50이하인 배열입니다.strings
의 원소는 소문자 알파벳으로 이루어져 있습니다.strings
의 원소는 길이 1 이상, 100이하인 문자열입니다.strings
의 원소의 길이는 n보다 큽니다.strings | n | result |
---|---|---|
["sun", "bed", "car"] | 1 | ["car", "bed", "sun"] |
["abce", "abcd", "cdx"] | 2 | ["abcd", "abce", "cdx"] |
입출력 예 1
strings
를 정렬하면 ["car", "bed", "sun"] 입니다.입출력 예 2
using System;
using System.Linq;
public class Solution {
public string[] solution(string[] strings, int n) {
string[] answer = strings.OrderBy(x => x).OrderBy(x => x[n]).ToArray();
return answer;
}
}