반응형
1. 문제
2. 풀이
dictionary 형태 사용하기
3. 구현
def solution(record):
answer = []
dic={}
for item in record:
item = item.split(' ') # item.split(' ') 하면 달라지는 것이 없다.
if item[0] != 'Leave':
dic[item[1]] = item[2]
for item in record:
item = item.split(' ')
if item[0]=='Enter':
answer.append(f"{dic[item[1]]}님이 들어왔습니다.")
if item[0]=='Leave':
answer.append(f"{dic[item[1]]}님이 나갔습니다.")
return answer
반응형
'PS > 프로그래머스' 카테고리의 다른 글
프로그래머스 전화번호 목록도움말 python (0) | 2021.06.14 |
---|---|
프로그래머스 짝지어 제거하기 python (0) | 2021.06.14 |
프로그래머스 124나라의 숫자 python (0) | 2021.06.14 |
프로그래머스 튜플 python (0) | 2021.06.13 |
프로그래머스 문자열압축 python (0) | 2021.06.12 |
댓글