Skip to content

Commit

Permalink
[level 0] Title: 가위 바위 보, Time: 0.02 ms, Memory: 10.3 MB -BaekjoonHub
Browse files Browse the repository at this point in the history
  • Loading branch information
2sojeong committed May 22, 2024
1 parent 57dd45b commit dd3be7d
Show file tree
Hide file tree
Showing 2 changed files with 84 additions and 0 deletions.
71 changes: 71 additions & 0 deletions 프로그래머스/0/120839. 가위 바위 보/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
# [level 0] 가위 바위 보 - 120839

[문제 링크](https://school.programmers.co.kr/learn/courses/30/lessons/120839)

### 성능 요약

메모리: 10.3 MB, 시간: 0.02 ms

### 구분

코딩테스트 연습 > 코딩테스트 입문

### 채점결과

정확성: 100.0<br/>합계: 100.0 / 100.0

### 제출 일자

2024년 05월 23일 02:39:44

### 문제 설명

<p>가위는 2 바위는 0 보는 5로 표현합니다. 가위 바위 보를 내는 순서대로 나타낸 문자열 <code>rsp</code>가 매개변수로 주어질 때, rsp에 저장된 가위 바위 보를 모두 이기는 경우를 순서대로 나타낸 문자열을 return하도록 solution 함수를 완성해보세요.</p>

<hr>

<h5>제한사항</h5>

<ul>
<li>0 &lt; <code>rsp</code>의 길이 ≤ 100</li>
<li> <code>rsp</code>와 길이가 같은 문자열을 return 합니다.</li>
<li> <code>rsp</code>는 숫자 0, 2, 5로 이루어져 있습니다.</li>
</ul>

<hr>

<h5>입출력 예</h5>
<table class="table">
<thead><tr>
<th>rsp</th>
<th>result</th>
</tr>
</thead>
<tbody><tr>
<td>"2"</td>
<td>"0"</td>
</tr>
<tr>
<td>"205"</td>
<td>"052"</td>
</tr>
</tbody>
</table>
<hr>

<h5>입출력 예 설명</h5>

<p>입출력 예 #1</p>

<ul>
<li>"2"는 가위이므로 바위를 나타내는 "0"을 return 합니다.</li>
</ul>

<p>입출력 예 #2</p>

<ul>
<li>"205"는 순서대로 가위, 바위, 보이고 이를 모두 이기려면 바위, 보, 가위를 순서대로 내야하므로 “052”를 return합니다.</li>
</ul>


> 출처: 프로그래머스 코딩 테스트 연습, https://school.programmers.co.kr/learn/challenges
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
def solution(rsp):
answer = list(rsp)
print(answer)
result=''
for i in answer:
if i=='2':
result=result+'0'
elif i=='0':
result=result+'5'
elif i=='5':
result=result+'2'

return result

0 comments on commit dd3be7d

Please sign in to comment.