프로그래머스(Level 1) - 💫 음양 더하기

Gammi·2023년 3월 20일
0

프로그래머스

목록 보기
44/69

✔ 문제






✔ 해결


class Solution {
  public int solution(int[] absolutes, boolean[] signs) {
   int answer = 0;
   int[] sub_answer = new int[absolutes.length];
   
   for(int i = 0; i < absolutes.length; i++) {
     if(signs[i] == true) {
       sub_answer[i] = absolutes[i];
     }else {
       sub_answer[i] = -absolutes[i];
     }
     
     answer += sub_answer[i];
   }
   
    return answer;
  }
}
profile
개발자가 되었어요⭐️

0개의 댓글