글
프로그래머스 C# 없는 숫자 더하기(P, J)
프로그래밍
2023. 2. 6. 13:08
728x90
SMALL
using System;
public class Solution {
public int solution(int[] numbers) {
int sum = 0;
for(int i = 0;i<numbers.Length;i++)
{
sum += numbers[i];
}
return 45-sum;
}
}
//////
using System;
using System.Collections.Generic;
using System.Linq;
public class Solution {
public int solution(int[] numbers) {
var numberArray = new int[] { 1, 2, 3, 4, 5, 6, 7, 8, 9 };
return numberArray.Except(numbers).Sum();
}
}
파이썬
def solution(numbers):
return 45 - sum(numbers)
자바
class Solution {
public int solution(int[] numbers) {
int sum = 45;
for (int i : numbers) {
sum -= i;
}
return sum;
}
}
728x90
'프로그래밍' 카테고리의 다른 글
프로그래머스 C# 신고 결과 받기(Dictionary, HashMap, P, J) (0) | 2023.02.06 |
---|---|
프로그래머스 C# 콜라 문제(P, J) (0) | 2023.02.06 |
프로그래머스 C# 성격 유형 검사하기(파이썬, 자바) dictionary (0) | 2023.02.05 |
프로그래머스 레벨1 C# 삼총사(3중 for문, 파이썬, 자바) (0) | 2023.02.05 |
프로그래머스 C# 나머지가 1이 되는 수 찾기(파이썬, 자바) (0) | 2023.02.05 |