class Solution
{
public int solution(int[] absolutes, boolean[] signs){
int answer = 0; // answer값 0으로 초기화
for( int i=0; i<absolutes.length; i++) // 전달받은 배열의 길이만큼 반복
{
if ( signs[i] == true) // boolean배열 i번 인덱스가 true일때
{
answer += absolutes[i]; // answer에 int배열 i번 인덱스를 더함
}
else // boolean배열 i번 인덱스가 false일때
{
answer -= absolutes[i]; // answer에 int배열 i번 인덱스를 뺌
}
}
return answer; // 반복문이 끝난 후 answer값 반환
}
}