class Solution {
public int solution(int[] absolutes, boolean[] signs) {
int answer = 0;
int real = 0;
for (int i = 0; i < absolutes.length; i++){
if (signs[i] == true) { //여기서 처음에 =을 입력해서 제대로 리턴되지 않았다. 주의!
real = absolutes[i];
} else {
real = absolutes[i] * -1;
}
answer += real;
}
return answer;
}
}
'Language > JAVA' 카테고리의 다른 글
[프로그래머스] 평균 구하기 (0) | 2022.01.14 |
---|---|
[프로그래머스] 없는 숫자 더하기 (0) | 2022.01.14 |
[프로그래머스]문자열을 정수로 바꾸기 (0) | 2022.01.14 |
[프로그래머스]두 정수 사이의 합 (0) | 2022.01.14 |
[프로그래머스] 직사각형 별찍기 (0) | 2022.01.14 |