Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- nextjs
- Hooks
- HTML
- Python
- firebase
- react
- 프로그래머스
- Python #Baekjoon
- spread operation
- BOJ
- JavaScript
- React Kakao map
- Python #CodeUp
- es6
- optional chanining
- 카카오맵 api
- Default parameter
- CSS
- Next
- React #Hooks
- Nullish Coalescing Operator
- 카카오맵
- HTML #CSS
- Template literals
- css #html
- Redux
- es11
Archives
- Today
- Total
거북이개발자
[프로그래머스] 완주하지 못한 선수 본문
0. 제목
- 프로그래머스 완주하지 못한 선수
1. 문제
https://programmers.co.kr/learn/courses/30/lessons/42576
2. 풀이
- 두 배열중 있는 이름은 삭제하는 식으로 했다
- 하지만 효율성 오류가 난다.
- sort후 zip을 이용하여 값이 다르게 짝지어진 값을 구한다.
3. 코드
def solution(participant, completion):
answer = ''
participant.sort()
completion.sort()
for i, j in zip(participant, completion):
if i != j:
return i
return participant.pop()
'Algorithm(Python) > programmers(Lv.1)' 카테고리의 다른 글
[프로그래머스] K번째수 (0) | 2021.06.23 |
---|---|
[프로그래머스] 내적, 로또의 최고순위와 최저순위 (0) | 2021.06.21 |
[프로그래머스] 음양 더하기 (0) | 2021.06.21 |
[프로그래머스] 체육복 (0) | 2021.06.21 |
[프로그래머스] 폰켓몬 (0) | 2021.06.19 |
Comments