본문 바로가기
알고리즘 문제풀이/Programmers - 자바

프로그래머스 - 음양 더하기

by 올리브영 2023. 3. 26.
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
반응형