티스토리 뷰
문제출처 - https://programmers.co.kr/learn/courses/30/lessons/42888
def solution(record):
answer = []
res = []
dic = {} # {id: 닉네임}
for i in range(len(record)):
temp = record[i].split(' ')
if temp[0] == 'Enter':
dic[temp[1]] = temp[2]
res.append([temp[0], temp[1]])
elif temp[0] == 'Leave':
res.append([temp[0], temp[1]])
else:
dic[temp[1]] = temp[2]
for i in range(len(res)):
if res[i][0] == 'Enter':
string = dic[res[i][1]] + "님이 들어왔습니다."
answer.append(string)
else:
string = dic[res[i][1]] + "님이 나갔습니다."
answer.append(string)
return answer
'ALGORITHM > 프로그래머스' 카테고리의 다른 글
[Python] 프로그래머스 - 짝지어 제거하기(LEVEL2) (0) | 2020.03.14 |
---|---|
[Python] 프로그래머스 - 땅따먹기(LEVEL2) (0) | 2020.03.14 |
[MYSQL]프로그래머스 - DATETIME에서 DATE로 형 변환(LEVEL2) (0) | 2020.03.12 |
[MYSQL]프로그래머스 - 오랜 기간 보호한 동물2(LEVEL3) (0) | 2020.03.12 |
[MYSQL]프로그래머스 - 중성화 여부 파악하기(LEVEL2) (0) | 2020.03.12 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- Python
- 2019 Kakao Blind Recruitment
- 구현
- 괄호
- dictionary
- 프로그래머스
- programmers
- 재귀
- 백준
- 완전탐색
- 딕셔너리
- C++
- 우선순위큐
- 정렬
- 코딩테스트
- 문자열
- 2020 KAKAO BLIND RECRUITMENT
- 문자열처리
- 파이썬
- hash
- BOJ
- SWExpert
- SW Expert
- left join
- 해시
- 힙
- 순열
- Permutation
- 스택
- combination
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함