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
- 성적 입력받기
- 귀도 반 로섬
- 딥러닝
- html
- Python
- 입출력
- 그룹 # 그룹 해체 # 단축키 #figma #Figma
- 차집합
- index()
- pop()
- 리스트와 차이점
- Java Script # == # === # difference # 차이
- false
- a=1
- 파이썬
- null # undefined
- 부스트캠프
- 변수
- append()
- 정보를 담을 수 있는 그릇
- input()
- 1일차
- 조건문 큰 수부터 입력받아야하는 이유
- 변수와 입출력
- 불리안
- 합집합
- 변할 수 있는
- del()
- 조지 불
- insert()
Archives
- Today
- Total
I about me
[Python] 완주하지 못한 선수 본문
풀이 1
def solution(participant, completion):
participant.sort()
completion.sort()
for i in range(0, len(completion)):
if participant[i] != completion[i]:
return participant[i]
return participant[-1]
풀이 2
import collections
def soltion(participant, completion):
answer = collections.Counter(participant) - collections.Counter(completion)
return list(answer.keys())[0]
collections.Counter(participant) # Counter({'leo': 1, 'kiki': 1, 'eden': 1})
list(answer.keys()) # ['leo']
list(answer.keys())[0] # 'leo'
'Algorithm > 프로그래머스' 카테고리의 다른 글
[Python] 폰켓몬 (0) | 2024.06.24 |
---|---|
[Python] 이상한 문자 만들기 (0) | 2024.05.30 |
[Python] 연속 부분 수열 합의 개수 (0) | 2024.05.29 |
[Python] 크기가 작은 부분문자열 (0) | 2024.05.29 |
[Python] 3진법 뒤집기 (0) | 2024.05.29 |