본문 바로가기
Algorithm/Programers

크레인 인형뽑기

by eclipse7727 2020. 4. 10.

크레인 인형뽑기

function solution(board, moves) {
    var answer = 0;
    let list = [];
    moves.reverse();
    while(moves.length>0){
        let current = moves.pop()-1;
        for(let i = 0 ; i <= board.length-1  ; i++){
            if(board[i][current] != 0 ){
                list.push(board[i][current]);
                board[i][current] = 0;
                break;
            }
        }
        if(list.length > 1 &&list[list.length-1] == list[list.length-2]){
            list.length-=2;
            answer+=2;
        }
    }
    return answer;
}

 

프로그래머스

코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.

programmers.co.kr

 

반응형

'Algorithm > Programers' 카테고리의 다른 글

프로그래머스 등산 코스 정하기 javascript , python  (0) 2022.08.23
카펫  (0) 2020.04.10
문자열 압축  (0) 2020.04.10
124 나라의 숫자  (0) 2020.04.10
비밀지도  (0) 2020.04.10

댓글