-
[프로그래머스] 없는 숫자 더하기 (월간 코드 챌린지 시즌3)ALGORITHM/PROGRAMMERS 2021. 9. 13. 23:30
https://programmers.co.kr/learn/courses/30/lessons/86051
2021-09-13
1234567class Solution {public int solution(int[] numbers) {int answer = 45;for(int num: numbers) answer -= num;return answer;}}cs 'ALGORITHM > PROGRAMMERS' 카테고리의 다른 글
[프로그래머스] 약수의 개수와 덧셈 (월간 코드 챌린지 시즌2) (0) 2021.09.14 [프로그래머스] 음양 더하기 (월간 코드 챌린지 시즌2) (0) 2021.09.13 [프로그래머스] 멀리 뛰기 (0) 2021.09.07 [프로그래머스] 야근 지수 (0) 2021.09.06 [프로그래머스] 여행경로 (0) 2021.09.06