728x90
반응형
https://programmers.co.kr/learn/courses/30/lessons/42748
using System;
using System.Linq;
public class Solution {
public int[] solution(int[] array, int[,] commands) {
int[] answer = new int[commands.GetLength(0)];
for(int i = -1; ++i < answer.Length;)
{
int start = commands[i, 0] - 1;
int end = commands[i, 1] - commands[i, 0] + 1;
int choice = commands[i, 2] - 1;
answer[i] = array.ToList().GetRange(start, end).OrderBy(x => x).ToArray()[choice];
}
return answer;
}
}
Linq 사용해서 편하게
반응형
'프로그래머스_C# > Level_1' 카테고리의 다른 글
[프로그래머스 C#] 내적 (0) | 2021.09.08 |
---|---|
[프로그래머스 C#] 모의고사 (0) | 2021.09.07 |
[프로그래머스 C#] 체육복 (0) | 2021.09.06 |
[프로그래머스 C#] 2주차 상호 평가 (0) | 2021.09.06 |
[프로그래머스 C#] 약수의 개수와 덧셈 (0) | 2021.09.05 |