코딩테스트 문제풀이/프로그래머스

[프로그래머스] 고득점 Kit 해시

itaeiou 2022. 3. 14. 16:04
반응형

42576 완주하지 못한 선수

https://programmers.co.kr/learn/courses/30/lessons/42576

 

코딩테스트 연습 - 완주하지 못한 선수

수많은 마라톤 선수들이 마라톤에 참여하였습니다. 단 한 명의 선수를 제외하고는 모든 선수가 마라톤을 완주하였습니다. 마라톤에 참여한 선수들의 이름이 담긴 배열 participant와 완주한 선수

programmers.co.kr

 

20220313 javascript 문제풀이

// 같은 이름 하나씩 삭제
// 없는 이름이 나오면 리턴
function solution(participant, completion) {    
    for(item of participant) {
        let index = completion.findIndex(element => element === item);
        completion.splice(index, 1);
        if(index == -1) {
            return item;
        }
    }
}
// 둘 다 정렬 후 앞에서부터 탐색
function solution(participant, completion) {
    participant.sort();
    completion.sort();
    for(let i = 0; i<participant.length; i++) {
        if(participant[i] != completion[i]) {
            return participant[i];
        }
    }
}

Map으로 확인

function solution(participant, completion) {
    const m = new Map();
    
    participant.forEach(v => {
        if(m.has(v)) {
            m.set(v, m.get(v)+1);
        } else {
            m.set(v, 1);
        }
    });
    completion.forEach(v => {
        if(m.has(v)) {
            if(m.get(v) > 1) {
                m.set(v, m.get(v)-1);
            } else { 
                m.delete(v);
            }
        }       
    });
    
    return m.keys().next().value;
}
반응형