프로그래머스 C# 문자열 내 마음대로 정렬하
·
알고리즘
문제 설명 해결방안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(); }}