728x90
반응형
class Solution {
public int solution(int[] absolutes, boolean[] signs) {
int answer = 0;
for(int i=0; i<signs.length; i++){
if(signs[i] == false){
absolutes[i] *= -1;
}
}
for(int n : absolutes){
answer+=n;
}
return answer;
}
}
728x90
반응형
'알고리즘 문제풀이 > Programmers - 자바' 카테고리의 다른 글
프로그래머스 - 나누어 떨어지는 숫자 배열 (0) | 2023.03.26 |
---|---|
프로그래머스 - 핸드폰 번호 가리기 (0) | 2023.03.26 |
프로그래머스 - 콜라츠 추측 (0) | 2023.03.25 |
프로그래머스 - 두 정수 사이의 합 (0) | 2023.03.25 |
프로그래머스 - 하샤드 수 (0) | 2023.03.25 |