성장에 목마른 코린이

음양 더하기 220801 본문

코딩 테스트 준비/프로그래머스 level 1

음양 더하기 220801

성장하는 코린이 2022. 8. 1. 19:22
728x90

나의 솔루션

function solution(absolutes, signs) {
    let ans = 0;
    for (let i = 0; i < signs.length; i++) {
        if (signs[i] === false) {
            absolutes[i] = -absolutes[i];
        }
        ans = ans + absolutes[i];
    }
    return ans;
}

다른 솔루션

 

Comments