Skip to content

Commit

Permalink
[level 0] Title: 문자열의 뒤의 n글자, Time: 0.00 ms, Memory: 10.2 MB -Baekjoo…
Browse files Browse the repository at this point in the history
…nHub
  • Loading branch information
boyamie committed Jun 12, 2024
1 parent 30644fd commit cc72ea8
Show file tree
Hide file tree
Showing 2 changed files with 77 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,74 @@
# [level 0] 문자열의 뒤의 n글자 - 181910

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

### 성능 요약

메모리: 10.2 MB, 시간: 0.00 ms

### 구분

코딩테스트 연습 > 코딩 기초 트레이닝

### 채점결과

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

### 제출 일자

2024년 06월 12일 12:58:37

### 문제 설명

<p>문자열 <code>my_string</code>과 정수 <code>n</code>이 매개변수로 주어질 때, <code>my_string</code>의 뒤의 <code>n</code>글자로 이루어진 문자열을 return 하는 solution 함수를 작성해 주세요.</p>

<hr>

<h5>제한사항</h5>

<ul>
<li><code>my_string</code>은 숫자와 알파벳으로 이루어져 있습니다.</li>
<li>1 ≤ <code>my_string</code>의 길이 ≤ 1,000</li>
<li>1 ≤ <code>n</code> ≤ <code>my_string</code>의 길이</li>
</ul>

<hr>

<h5>입출력 예</h5>
<table class="table">
<thead><tr>
<th>my_string</th>
<th>n</th>
<th>result</th>
</tr>
</thead>
<tbody><tr>
<td>"ProgrammerS123"</td>
<td>11</td>
<td>"grammerS123"</td>
</tr>
<tr>
<td>"He110W0r1d"</td>
<td>5</td>
<td>"W0r1d"</td>
</tr>
</tbody>
</table>
<hr>

<h5>입출력 예</h5>

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

<ul>
<li>예제 1번의 <code>my_string</code>에서 뒤의 11글자는 "grammerS123"이므로 이 문자열을 return 합니다.</li>
</ul>

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

<ul>
<li>예제 2번의 <code>my_string</code>에서 뒤의 5글자는 "W0r1d"이므로 이 문자열을 return 합니다.</li>
</ul>


> 출처: 프로그래머스 코딩 테스트 연습, https://school.programmers.co.kr/learn/challenges
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
def solution(my_string, n):
answer = my_string[-n:]
return answer

0 comments on commit cc72ea8

Please sign in to comment.