프로그래머스 음양 더하기 (Java,자바)

jonghyukLee·2022년 5월 19일
0

이번에 풀어본 문제는
프로그래머스 음양 더하기 입니다.

📕 문제 링크

❗️코드

class Solution {
    public int solution(int[] absolutes, boolean[] signs) {
        int answer = 0;
        int len = signs.length;
        for(int i = 0; i < len; i++)
        {
            int nextVal = absolutes[i];
			answer += signs[i] ? nextVal : -nextVal;
}
        return answer;
    }
}

📝 풀이

answer 변수에 true면 덧셈, false면 뺄셈을 해주면 해결됩니다.

📜 후기

레벨1 문제이므로 가볍게 넘어가겠습니다!^^

profile
머무르지 않기!

0개의 댓글