728x90
https://school.programmers.co.kr/learn/courses/30/lessons/86051
소스코드1
using System;
using System.Linq;
public class Solution
{
public int solution(int[] numbers)
{
return 45 - numbers.Sum(x => x); ;
}
}
소스코드2
using System;
using System.Linq;
public class Solution
{
public int solution(int[] numbers)
{
var numberArray = new int[10];
for (int i = 0; i < 10; i++)
numberArray[i] = i;
return numberArray.Except(numbers).Sum();
}
}
728x90
'코딩공부 > 프로그래머스' 카테고리의 다른 글
[프로그래머스]Lv.1 약수의 개수와 덧셈 C# (0) | 2023.06.15 |
---|---|
[프로그래머스]Lv.1 숫자 문자열과 영단어 C# (0) | 2023.06.15 |
[프로그래머스]Lv.1 최소직사각형 C# (0) | 2023.06.15 |
[프로그래머스]Lv.1 나머지가 1이 되는 수 찾기 C# (0) | 2023.06.15 |
※[프로그래머스]Lv.1 신고 결과 받기 C# (0) | 2023.06.15 |