[sangkyu39] programmers_완주하지못한선수_Python #13
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
🔗 문제 링크
참가 선수, 완주 선수의 이름이 담긴 배열을 받는다. 참가선수에는 있고 완주 선수에는 없는 사람의 이름을 찾아 return 하면 된다.
💡 풀이 아이디어
참가선수에는 있고 완주선수에는 없는 사람의 이름을 찾으면 되기 때문에 not in을 사용하려 했지만 중복되는 선수의 이름이 있었다.
-> 각 배열을 정렬해 완주 및 참가의 이름 순서가 같게 한 후 앞에서부터 비교해 이름이 없는 경우를 return 하도록 코드를 구성했다.
📝 새로 학습한 내용
배열의 길이만큼 for문을 돌리는 코드를 잊었다가 다시 알게 되었다.
📚 참고 자료