✏️ 문제 문제 파악처음엔 for in 돌아서 있으면 pop() 메소드를 사용해서 나머지 남은 이름을 출력하도록 코드를 짰는데 성능 테스트에서 다 시간 초과가 났다..그래서 Counter 자료구조를 사용해서 쉽게 풀었다..! (근데 이 문제는 해시 문제라서 해시로도 풀어봐야지..) 코드실패한 코드 def solution(participant, completion): for c in completion: if c in participant: participant.pop(participant.index(c)) return participant[0]성공한 코드 from collections import Counterdef solution(pa..