Skip to content

Commit 68925db

Browse files
committed
[level 1] Title: 완주하지 못한 선수, Time: 64.80 ms, Memory: 34 MB -BaekjoonHub
1 parent 4bb6657 commit 68925db

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

프로그래머스/1/42576. 완주하지 못한 선수/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# [level 1] 완주하지 못한 선수 - 42576
22

3-
[문제 링크](https://school.programmers.co.kr/learn/courses/30/lessons/42576?language=python3)
3+
[문제 링크](https://school.programmers.co.kr/learn/courses/30/lessons/42576)
44

55
### 성능 요약
66

7-
메모리: 34.2 MB, 시간: 65.38 ms
7+
메모리: 34 MB, 시간: 64.80 ms
88

99
### 구분
1010

@@ -16,7 +16,7 @@
1616

1717
### 제출 일자
1818

19-
2026년 06월 30일 23:05:13
19+
2026년 07월 17일 11:29:14
2020

2121
### 문제 설명
2222

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
from collections import Counter
22

33
def solution(participant, completion):
4-
return list((Counter(participant) - Counter(completion)))[0]
4+
return list(Counter(participant) - Counter(completion))[0]

0 commit comments

Comments
 (0)