일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- Re
- python
- 수학
- Combinations
- 정렬
- lambda
- 카카오
- java
- 백준
- 자바
- 프로그래머스
- dfs
- Set
- 파이썬
- KAKAO BLIND RECRUITMENT
- 정규식
- divmod
- 동적 계획법
- DateTime
- backjoon
- 추석맞이 코딩챌린지
- 그리디
- BFS
- 다익스트라
- 재귀함수
- 이분탐색
- heapq
- Zip
- 위클리 챌린지
- programmers
Archives
- Today
- Total
상상쓰
[프로그래머스] 오픈채팅방 본문
https://programmers.co.kr/learn/courses/30/lessons/42888?language=python3
퇴근!
def solution(record):
answer = []
dic = {}
for i in record:
if i[0] != 'L':
command, idx, name = i.split()
dic[idx] = name
for i in record:
if i[0] == 'E':
answer.append(dic[i.split()[1]] + '님이 들어왔습니다.')
if i[0] == 'L':
answer.append(dic[i.split()[1]] + '님이 나갔습니다.')
return answer
print(solution(['Enter uid1234 Muzi', 'Enter uid4567 Prodo', 'Leave uid1234', 'Enter uid1234 Prodo', 'Change uid4567 Ryan'])) # ['Prodo님이 들어왔습니다.', 'Ryan님이 들어왔습니다.', 'Prodo님이 나갔습니다.', 'Prodo님이 들어왔습니다.']
'Coding Test' 카테고리의 다른 글
[백준] 소수 최소 공배수 (0) | 2021.07.22 |
---|---|
[프로그래머스] 가사 검색 (0) | 2021.07.22 |
[백준] 최고의 피자 (0) | 2021.07.20 |
[프로그래머스] 전화번호 목록 (0) | 2021.07.19 |
[백준] 다리 놓기 (0) | 2021.07.19 |
Comments