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]= absolutes[i]*-1;
}
}
for(int i=0; i<absolutes.length; i++){
answer += absolutes[i];
}
return answer;
}
}
'공부기록 > 프로그래머스' 카테고리의 다른 글
[프로그래머스] 정수 내림차순 배치하기 (0) | 2023.08.29 |
---|---|
[프로그래머스] 정수 제곱근 (0) | 2023.08.27 |
[프로그래머스] x만큼 간격이 있는 n개의 숫자 (0) | 2023.08.25 |
[프로그래머스] 피보나치 수 (0) | 2023.08.24 |
[프로그래머스] 자연수 뒤집어 배열로 만들기 (0) | 2023.08.24 |