해시 01 - 완주하지 못한 선수, 프로그래머스, 알고리즘, Programmers, Stack, Queue, Hash, 코딩테스트, Algorithm, 풀이과정, Leetcode, 릿코드, 코딩테스트, Tech interview
간만에 쌓인 것들 다시 업로드를.. # 참가자의 각 이름과 이름이 몇번 나왔는지를 확인해서 해시를 만들고, # 완주자로 위의 해시의 카운트를 빼서 없애준다. # 남은 참가자가 있으면 그 자가 범인! # 1. Input participant and completion arrays # 2. Make participant Hash # 3. Iterate completion array # 3.1. Check Hash # 3.1.1. If Hash has Name of completion, reduce Count. # 3.1.2. If Hash doesn't have Name or Count == 0, then remove that Name Hash. # 4. Return remained participant N..