Simple&Natural
프로그래머스 - 완주하지 못한 선수 본문
728x90
풀이과정)
그냥 두 배열을 정렬한 다음 차례대로 비교하면서 일치하지 않는 부분을 골라내면 된다.
사용언어 : Javascript
풀이)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
function solution(participant, completion) {
var answer = '';
participant.sort();
completion.sort();
for(var prop in participant)
if(participant[prop]!=completion[prop]) {
answer = participant[prop];
break;
}
return answer;
}
|
cs |
출처 : https://programmers.co.kr/learn/courses/30/lessons/42576
728x90
'코딩테스트 풀이 > 프로그래머스' 카테고리의 다른 글
Hash - 완주하지 못한 선수 (0) | 2022.04.23 |
---|---|
2021 dev-matching - 로또의 최고 순위와 최저 순위 (0) | 2021.08.13 |
프로그래머스 Winter/Summer Coding 종이접기 문제 (0) | 2020.05.29 |
프로그래머스 - 카펫 (0) | 2020.01.28 |
프로그래머스 - 피보나치 (0) | 2020.01.21 |