class Solution {
public int solution(int[] absolutes, boolean[] signs) {
int answer = 0;
for(int i=0; i<absolutes.length; i++){
if(signs[i]==true){
answer+=absolutes[i];
}else {
answer+= -absolutes[i];
}
}
return answer;
}
}
양수를 음수로 만들고 싶으면 -기호만 붙여주면 된다.
'프로그래머스' 카테고리의 다른 글
[프로그래머스] 개미 군단 (0) | 2022.11.29 |
---|---|
[프로그래머스] 나누어 떨어지는 숫자 배열 (0) | 2022.11.29 |
[프로그래머스] x만큼 간격이 있는 n개의 숫자 (0) | 2022.11.28 |
[프로그래머스] 내적 (0) | 2022.11.28 |
[프로그래머스] 가운데 글자 가져오기 (0) | 2022.11.28 |