문제
https://programmers.co.kr/learn/courses/30/lessons/42576?language=javascript
코드
function solution(participant, completion) {
participant.sort()
completion.sort()
for (let i=0; i<participant.length; i++) {
if (participant[i] !== completion[i]) return participant[i]
}
}
'⏳ 알고리즘 > JavaScript 알고리즘' 카테고리의 다른 글
프로그래머스 - LV1. 모의고사 (0) | 2021.06.20 |
---|---|
프로그래머스 - LV1. 체육복 (0) | 2021.06.20 |
프로그래머스 - LV1. 두 개 뽑아서 더하기 (0) | 2021.06.19 |
프로그래머스 - LV1. 자릿수 더하기 (0) | 2021.06.19 |
프로그래머스 - LV1. 가운데 글자 가져오기 (0) | 2021.06.18 |