Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- PYTHON
- 편스토랑 우승상품
- leetcode
- Kaggle
- 파이썬
- 백준
- 코로나19
- hackerrank
- 맥북
- 더현대서울 맛집
- ChatGPT
- Baekjoon
- programmers
- github
- ubuntu
- 자연어처리
- 금융문자분석경진대회
- SW Expert Academy
- dacon
- Git
- AI 경진대회
- Real or Not? NLP with Disaster Tweets
- 프로그래머스
- 프로그래머스 파이썬
- gs25
- Docker
- 우분투
- 데이콘
- 편스토랑
- 캐치카페
Archives
- Today
- Total
솜씨좋은장씨
[Programmers] 가위 바위 보 (Python) 본문
728x90
반응형
코딩 1일 1문제! 오늘의 문제는 프로그래머스의 가위 바위 보 입니다.
👨🏻💻 문제 풀이
가위 (2) 바위 (0) 보 (5) 각각 이기는 경우를 dictionary 로 만들어두고
win_rsp = {
"2": "0", "0": "5", "5": "2"
}
가위 바위 보 내는 것 들을 key 로 하여 win_rsp 에서 나오는 value 값을 answer 리스트에 넣고
answer = []
for h in list(rsp):
answer.append(win_rsp[h])
answer 리스트를 join 하면 끝!
"".join(answer)
👨🏻💻 코드 ( Solution )
def solution(rsp):
answer = []
win_rsp = {
"2": "0", "0": "5", "5": "2"
}
for h in list(rsp):
answer.append(win_rsp[h])
return "".join(answer)
'Programming > 코딩 1일 1문제' 카테고리의 다른 글
[BaekJoon] 26264번 : 빅데이터? 정보보호! (Python) (0) | 2023.03.07 |
---|---|
[Programmers] 바탕화면 정리 (Python) (0) | 2023.03.06 |
[Programmers] 한 번만 등장한 문자 (Python) (0) | 2023.03.04 |
[Programmers] 순서쌍의 개수 (Python) (0) | 2023.03.03 |
[Programmers] 숨어있는 숫자의 덧셈 (2) (Python) (0) | 2023.03.02 |
Comments