7. 음양 더하기

박재균·2022년 1월 17일
0

알고리즘

목록 보기
7/28

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값 반환
    }
}
profile
열심히 배우겠습니다.

0개의 댓글

관련 채용 정보