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.Copy, skip, take) (0) | 2023.06.07 |
---|---|
[프로그래머스]Lv.0 n 번째 원소부터 C# (Skip) (0) | 2023.06.07 |
[프로그래머스]Lv.0 2의 영역 3 C# (0) | 2023.06.07 |
[프로그래머스]Lv.0 배열 만들기 3 C# (linq 포함) (0) | 2023.06.07 |
[프로그래머스]Lv.0 첫 번째로 나오는 음수 C# (linq 포함) (0) | 2023.06.07 |