[프로그래머스]

해피데빙·2022년 6월 22일
0

코딩테스트

목록 보기
19/52
post-custom-banner

문제

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

풀이

function solution(participant, completion) {
    participant.sort()
    completion.sort()
  return participant.find((el, index) => el !== completion[index])
}

중복된 값이 있을 때는 sort를 해서 index로 하나씩 비교하는 것이 가장 간편하다

profile
노션 : https://garrulous-gander-3f2.notion.site/c488d337791c4c4cb6d93cb9fcc26f17

0개의 댓글