[프로그래머스] 음양 더하기 java

Elmo·2022년 8월 23일
0
post-custom-banner

🔔 음양 더하기

https://school.programmers.co.kr/learn/courses/30/lessons/76501

삼항 연산자로 깔끔하게 풀었다

🔑 java 풀이

import java.util.*;
class Solution {
    public int solution(int[] absolutes, boolean[] signs) {
        int sum =0;
        for(int i=0; i<absolutes.length; i++){
            sum += signs[i] ? absolutes[i] : -1 * absolutes[i];
        }
        return sum;
    }
}
profile
엘모는 즐거워

0개의 댓글