min
프로그래머스 완주하지 못한 선수 자바스크립트 본문
<문제>
https://school.programmers.co.kr/learn/courses/30/lessons/42576
<나의 풀이>
function solution(participant, completion) {
p_dict = {}
for (p of participant) {
if (p in p_dict) p_dict[p] += 1
else p_dict[p] = 1
}
for (c of completion) {
p_dict[c] -= 1
}
for(p of participant) {
if (p_dict[p]) return p
}
}
<다른사람의 풀이>
function solution(participant, completion) {
/*
for(let i in participant) {
if(completion.includes(participant[i]) == false) return participant[i];
completion.splice(completion.indexOf(participant[i]), 1);
}
*/
participant.sort();
completion.sort();
for(let i in participant) {
if(participant[i] !== completion[i]) return participant[i];
}
}
<궁금중>
sort()
https://developer.mozilla.org/ko/docs/Web/JavaScript/Reference/Global_Objects/Array/sort
'알고리즘' 카테고리의 다른 글
프로그래머스 자릿수 더하기 자바스크립트 (0) | 2023.06.18 |
---|---|
프로그래머스 이상한 문자 만들기 자바스크립트 (0) | 2023.06.17 |
프로그래머스 2016년 자바스크립트 (1) | 2023.06.17 |
프로그래머스 x만큼 간격이 있는 n개의 숫자 자바스크립트 (0) | 2023.06.17 |
프로그래머스 행렬의 덧셈 자바스크립트 (1) | 2023.06.17 |