728x90
https://school.programmers.co.kr/learn/courses/30/lessons/181893?language=csharp
소스코드1
using System;
using System.Collections.Generic;
using System.Linq;
public class Solution
{
public int[] solution(int[] arr, int[] query)
{
List<int> answer = arr.ToList();
for (int i = 0; i < query.Length; i++)
{
int q = query[i];
if (i % 2 == 0)
answer.RemoveRange(q + 1, answer.Count() - (q + 1));
else
answer.RemoveRange(0, q);
}
return answer.ToArray();
}
}
소스코드2
using System;
using System.Collections.Generic;
using System.Linq;
public class Solution
{
public int[] solution(int[] arr, int[] query)
{
for (int i = 0; i < query.Length; i++)
{
if (i % 2 == 0)
arr = arr.Take(query[i] + 1).ToArray();
else
arr = arr.Skip(query[i]).ToArray();
}
return arr;
}
}
728x90
'코딩공부 > 프로그래머스' 카테고리의 다른 글
[프로그래머스]Lv.0 왼쪽 오른쪽 C# (Array.IndexOf, skip, take) (0) | 2023.06.07 |
---|---|
[프로그래머스]Lv.0 순서 바꾸기 C# (Array.Copy, skip, take) (0) | 2023.06.07 |
[프로그래머스]Lv.0 글자 지우기 C# (linq 포함) (0) | 2023.06.07 |
[프로그래머스]Lv.0 문자열 여러 번 뒤집기 C# (Aarray.Reverse) (0) | 2023.06.07 |
[프로그래머스]Lv.0 9로 나눈 나머지 C# (string 배열 형변환 없이) (0) | 2023.06.07 |