-
[프로그래머스] 음양 더하기 (월간 코드 챌린지 시즌2)ALGORITHM/PROGRAMMERS 2021. 9. 13. 23:39
https://programmers.co.kr/learn/courses/30/lessons/76501
2021-09-13
1234567class Solution {public int solution(int[] absolutes, boolean[] signs) {int answer = 0;for(int i = 0; i < absolutes.length; i++) answer += (signs[i] == true) ? +absolutes[i] : -absolutes[i];return answer;}}cs 'ALGORITHM > PROGRAMMERS' 카테고리의 다른 글
[프로그래머스] 위클리 챌린지 7주차 (0) 2021.09.20 [프로그래머스] 약수의 개수와 덧셈 (월간 코드 챌린지 시즌2) (0) 2021.09.14 [프로그래머스] 없는 숫자 더하기 (월간 코드 챌린지 시즌3) (0) 2021.09.13 [프로그래머스] 멀리 뛰기 (0) 2021.09.07 [프로그래머스] 야근 지수 (0) 2021.09.06