728x90
https://school.programmers.co.kr/learn/courses/30/lessons/42862
소스코드
using System;
using System.Linq;
public class Solution
{
public int solution(int n, int[] lost, int[] reserve)
{
int answer = 0;
int[] excpReserve = reserve.Except(lost).Select(x => x).ToArray();
int[] excpLost = lost.Except(reserve).Select(x => x).ToArray();
Array.Sort(excpReserve);
Array.Sort(excpLost);
for (int i = 0; i < excpReserve.Length; i++)
{
int num = excpLost.FirstOrDefault(w => w == excpReserve[i] - 1 || w == excpReserve[i] + 1);
if (num > 0)
{
excpLost[Array.IndexOf(excpLost, num)] = 0;
answer++;
continue;
}
}
return answer + (n - excpLost.Length);
}
}
728x90
'코딩공부 > 프로그래머스' 카테고리의 다른 글
[프로그래머스]Lv.1 소수 만들기 C# (소수인지 확인) (0) | 2023.06.15 |
---|---|
※[프로그래머스]Lv.1 모의고사 C# (나머지 값 활용) (0) | 2023.06.15 |
[프로그래머스]Lv.1 두 개 뽑아서 더하기 C# (0) | 2023.06.15 |
※[프로그래머스]Lv.1 내적 C# (select((s,idx)), zip) (0) | 2023.06.15 |
[프로그래머스]Lv.1 음양 더하기 C# (select((s,idx))) (0) | 2023.06.15 |