[프로그래머스 Lv.2] 22020 카카오 인턴십 - 수식 최대화

김민지·2023년 10월 13일
0

✨ 문제 ✨

✨ 정답 ✨

const calculate=(a, b, operator)=>{ 
    if (operator==='+'){
        return a+b;
    }
    if (operator==='*'){
        return a*b;
    }
    if (operator==='-'){
        return a-b
    }
}

function solution(expression) {
    const operatorArray = [
    ["+", "*", "-"],
    ["+", "-", "*"],
    ["*", "+", "-"],
    ["*", "-", "+"],
    ["-", "*", "+"],
    ["-", "+", "*"],
  ];
    var answer = Number.MIN_SAFE_INTEGER;
    let answerArray=[];
    // 연산 모음
    // 연산 모음 for문 돌리기
    // 그 안에서 연산을... how...
    // 연산 순서대로 for문 또 돌리고 앞뒤 계산 먼저 하기.
    for (let i=0;i<operatorArray.length;i++){
        const operands = expression.match(/[0-9]+/g).map(Number);
        const operators = expression.match(/[\*\+\-]/g);
        for (let j=0;j<operatorArray[i].length;j++){
            let index=operators.indexOf(operatorArray[i][j]);
            while(index!==-1){
                operands[index]=calculate(operands[index], operands[index+1], operatorArray[i][j]);
                operands.splice(index+1, 1);
                operators.splice(index, 1);
                index=operators.indexOf(operatorArray[i][j]);
            }
        }
        if (answer<Math.abs(operands[0])){
            answer=Math.abs(operands[0]);
        }
        
    }
 
    return answer;
}


🧵 참고한 정답지 🧵

https://gobae.tistory.com/75

💡💡 기억해야 할 점 💡💡

🚒🚒🚒 Number.MIN_SAFE_INTEGER 🚒🚒🚒

MIN_SAFE_INTEGER static data property represents the minimum safe integer in JavaScript, or -(253 - 1). To represent integers smaller than this, consider using BigInt .

https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number/MIN_SAFE_INTEGER

profile
이건 대체 어떻게 만든 거지?

0개의 댓글

관련 채용 정보