[프로그래머스/Java] 오픈채팅방

daily_study_78·2021년 11월 9일
0

알고리즘

목록 보기
5/11

문제 링크

https://programmers.co.kr/learn/courses/30/lessons/42888


문제


해결 과정

  • 우선 userId를 이용해 기본적인 틀을 만든다. 이후, userName으로 변경해 결과를 출력한다. 이때, userId와 userName의 길이는 1이상 10이하이므로 "님" 앞에 있는 것들이라고 지정해야한다.

최종 코드

import java.util.*;

class Solution {
    public String[] solution(String[] record) {
        
        ArrayList<String> arr = new ArrayList();
        HashMap<String, String> map = new HashMap();
        
        for (int i=0; i<record.length; i++) {
            String[] temp = record[i].split(" ");
        	
            if (temp[0].equals("Enter")) {
				arr.add(temp[1] + "님이 들어왔습니다.");
				map.put(temp[1], temp[2]);
			} else if (temp[0].equals("Change")) {
				map.put(temp[1], temp[2]);
			} else {
				arr.add(temp[1] + "님이 나갔습니다.");
			}
        }
        
        // userId -> userName으로 변경해야함
        String[] answer = new String[arr.size()];
        int idx = 0;
        
        // userName은 1부터 8사이 이므로 "님" 앞에붙은 것이 다 userName
        for (String ment : arr) {
            int endIndex = ment.indexOf("님");
            String userId = ment.substring(0, endIndex);
            
            String userName = map.get(userId);
            
            // answer배열에 userName으로 변경한 값 추가
            answer[idx++] = ment.replace(userId, userName);
        }
        return answer;
    }
}

0개의 댓글

관련 채용 정보