https://programmers.co.kr/learn/courses/30/lessons/76501
class Solution {
public int solution(int[] absolutes, boolean[] signs) {
int sum = 0;
for(int absolute:absolutes) {
sum+=absolute;
}
for(int i=0; i<signs.length; i++) {
if(signs[i]==false) {
sum-=(absolutes[i]*2);
}
}
int answer = sum;
return answer;
}
}
'코딩테스트연습 > 프로그래머스' 카테고리의 다른 글
[프로그래머스 - JAVA] 월간 코드 챌린지 시즌2 약수의 개수와 덧셈 (0) | 2021.10.24 |
---|---|
[프로그래머스 - JAVA] 월간 코드 챌린지 시즌1 내적 (0) | 2021.10.24 |
[프로그래머스 - JAVA] 월간 코드 챌린지 시즌3 없는 숫자 더하기 (0) | 2021.10.24 |
[프로그래머스 - JAVA] 2020 카카오 인턴십키패드 누르기 (0) | 2021.10.24 |
[프로그래머스 - JAVA] 2021 카카오 채용연계형 인턴십숫자 문자열과 영단어 (0) | 2021.10.24 |