We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4bb6657 commit 68925dbCopy full SHA for 68925db
2 files changed
프로그래머스/1/42576. 완주하지 못한 선수/README.md
@@ -1,10 +1,10 @@
1
# [level 1] 완주하지 못한 선수 - 42576
2
3
-[문제 링크](https://school.programmers.co.kr/learn/courses/30/lessons/42576?language=python3)
+[문제 링크](https://school.programmers.co.kr/learn/courses/30/lessons/42576)
4
5
### 성능 요약
6
7
-메모리: 34.2 MB, 시간: 65.38 ms
+메모리: 34 MB, 시간: 64.80 ms
8
9
### 구분
10
@@ -16,7 +16,7 @@
16
17
### 제출 일자
18
19
-2026년 06월 30일 23:05:13
+2026년 07월 17일 11:29:14
20
21
### 문제 설명
22
프로그래머스/1/42576. 완주하지 못한 선수/완주하지 못한 선수.py
@@ -1,4 +1,4 @@
from collections import Counter
def solution(participant, completion):
- return list((Counter(participant) - Counter(completion)))[0]
+ return list(Counter(participant) - Counter(completion))[0]
0 commit comments