def solution(participant, completion):
tmp=participant
tmp2=completion
for i in range(0,len(participant)):
for j in range(0,len(completion)):
if participant[i]==completion[j]:
tmp.pop(i)
tmp.insert(i,"0")
tmp2.pop(j)
tmp2.insert(j,"0")
answer=""
for k in range(0,len(participant)):
if tmp[k]!="0": answer=tmp[k]
return answer
```
정확성 테스트는 통과
효율성 테스트는 0점을 받았다 ㅠ
```
'기술' 카테고리의 다른 글
우분투18.04 설치하기 ubuntu18.04 installation (0) | 2021.05.18 |
---|---|
전화번호 목록 - 프로그래머스 해시 문제 (0) | 2021.04.05 |
팰린드롬수 - 백준1259번 (0) | 2021.04.05 |
직사각형에서 탈출 - 백준1085번 (0) | 2021.04.05 |
이항계수1 - 백준11050번 (0) | 2021.04.05 |