-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[level 1] Title: 완주하지 못한 선수, Time: 38.07 ms, Memory: 39.1 MB -Baekjoo…
…nHub
- Loading branch information
1 parent
de981f8
commit a93a045
Showing
2 changed files
with
88 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
# [level 1] 완주하지 못한 선수 - 42576 | ||
|
||
[문제 링크](https://school.programmers.co.kr/learn/courses/30/lessons/42576) | ||
|
||
### 성능 요약 | ||
|
||
메모리: 39.1 MB, 시간: 38.07 ms | ||
|
||
### 구분 | ||
|
||
코딩테스트 연습 > 해시 | ||
|
||
### 채점결과 | ||
|
||
정확성: 58.3<br/>효율성: 41.7<br/>합계: 100.0 / 100.0 | ||
|
||
### 제출 일자 | ||
|
||
2024년 10월 28일 20:47:07 | ||
|
||
### 문제 설명 | ||
|
||
<p>수많은 마라톤 선수들이 마라톤에 참여하였습니다. 단 한 명의 선수를 제외하고는 모든 선수가 마라톤을 완주하였습니다.</p> | ||
|
||
<p>마라톤에 참여한 선수들의 이름이 담긴 배열 participant와 완주한 선수들의 이름이 담긴 배열 completion이 주어질 때, 완주하지 못한 선수의 이름을 return 하도록 solution 함수를 작성해주세요.</p> | ||
|
||
<h5>제한사항</h5> | ||
|
||
<ul> | ||
<li>마라톤 경기에 참여한 선수의 수는 1명 이상 100,000명 이하입니다.</li> | ||
<li>completion의 길이는 participant의 길이보다 1 작습니다.</li> | ||
<li>참가자의 이름은 1개 이상 20개 이하의 알파벳 소문자로 이루어져 있습니다.</li> | ||
<li>참가자 중에는 동명이인이 있을 수 있습니다.</li> | ||
</ul> | ||
|
||
<h5>입출력 예</h5> | ||
<table class="table"> | ||
<thead><tr> | ||
<th>participant</th> | ||
<th>completion</th> | ||
<th>return</th> | ||
</tr> | ||
</thead> | ||
<tbody><tr> | ||
<td>["leo", "kiki", "eden"]</td> | ||
<td>["eden", "kiki"]</td> | ||
<td>"leo"</td> | ||
</tr> | ||
<tr> | ||
<td>["marina", "josipa", "nikola", "vinko", "filipa"]</td> | ||
<td>["josipa", "filipa", "marina", "nikola"]</td> | ||
<td>"vinko"</td> | ||
</tr> | ||
<tr> | ||
<td>["mislav", "stanko", "mislav", "ana"]</td> | ||
<td>["stanko", "ana", "mislav"]</td> | ||
<td>"mislav"</td> | ||
</tr> | ||
</tbody> | ||
</table> | ||
<h5>입출력 예 설명</h5> | ||
|
||
<p>예제 #1<br> | ||
"leo"는 참여자 명단에는 있지만, 완주자 명단에는 없기 때문에 완주하지 못했습니다.</p> | ||
|
||
<p>예제 #2<br> | ||
"vinko"는 참여자 명단에는 있지만, 완주자 명단에는 없기 때문에 완주하지 못했습니다.</p> | ||
|
||
<p>예제 #3<br> | ||
"mislav"는 참여자 명단에는 두 명이 있지만, 완주자 명단에는 한 명밖에 없기 때문에 한명은 완주하지 못했습니다.</p> | ||
|
||
<hr> | ||
|
||
<p>※ 공지 - 2023년 01월 25일 테스트케이스가 추가되었습니다.</p> | ||
|
||
|
||
> 출처: 프로그래머스 코딩 테스트 연습, https://school.programmers.co.kr/learn/challenges |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
from collections import Counter | ||
|
||
def solution(participant, completion): | ||
counts = Counter(participant) | ||
names = counts.keys() | ||
|
||
completion_counts = Counter(completion) | ||
|
||
for name in names: | ||
if counts[name] != completion_counts.get(name): | ||
return name |