hash

Algorithm

모의면접 복기 (1) - Hash, HashMap (완주하지 못한 선수)

9월 24일 금요일, 모의 면접을 진행할 기회를 갖게 되었습니다. 부족했던 부분을 복기하며 하나씩 채워가고자 합니다. 1. 첫 풀이 완주하지 못한 선수를 IDE 도움 없이 라이브 코딩으로 풀어보는 것이 면접의 시작이었습니다. 저의 작성 결과는 다음과 같았습니다. class Solution { public String solution(String[] participant, String[] completion) { List participantList = new ArrayList(); for (String s : participant) { participantList.add(s); } for (String s : completion) { participantList.remove(s); } return par..

리차드
'hash' 태그의 글 목록