728x90
프로그래머스 1단계
없는 숫자 더하기
https://programmers.co.kr/learn/challenges
문제 설명
풀이
class Solution {
public int solution(int[] numbers) {
int answer = 45;
for (int number : numbers) {
answer -= number;
}
return answer;
}
}
728x90
'알고리즘 > 프로그래머스 1단계' 카테고리의 다른 글
[프로그래머스] 내적 (0) | 2022.04.25 |
---|---|
[프로그래머스] 문자열 내림차순으로 배치하기 (0) | 2022.04.25 |
[프로그래머스] 정수 내림차순으로 배치하기 (0) | 2022.04.25 |
[프로그래머스] 비밀지도 (0) | 2022.04.25 |
[프로그래머스] 문자열 내 마음대로 정렬하기 (0) | 2022.04.25 |
댓글