-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[level 0] Title: 접두사인지 확인하기, Time: 0.00 ms, Memory: 10.2 MB -BaekjoonHub
- Loading branch information
Showing
2 changed files
with
103 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,97 @@ | ||
# [level 0] 접두사인지 확인하기 - 181906 | ||
|
||
[문제 링크](https://school.programmers.co.kr/learn/courses/30/lessons/181906) | ||
|
||
### 성능 요약 | ||
|
||
메모리: 10.2 MB, 시간: 0.00 ms | ||
|
||
### 구분 | ||
|
||
코딩테스트 연습 > 코딩 기초 트레이닝 | ||
|
||
### 채점결과 | ||
|
||
정확성: 100.0<br/>합계: 100.0 / 100.0 | ||
|
||
### 제출 일자 | ||
|
||
2024년 06월 12일 12:52:04 | ||
|
||
### 문제 설명 | ||
|
||
<p>어떤 문자열에 대해서 접두사는 특정 인덱스까지의 문자열을 의미합니다. 예를 들어, "banana"의 모든 접두사는 "b", "ba", "ban", "bana", "banan", "banana"입니다.<br> | ||
문자열 <code>my_string</code>과 <code>is_prefix</code>가 주어질 때, <code>is_prefix</code>가 <code>my_string</code>의 접두사라면 1을, 아니면 0을 return 하는 solution 함수를 작성해 주세요.</p> | ||
|
||
<hr> | ||
|
||
<h5>제한사항</h5> | ||
|
||
<ul> | ||
<li>1 ≤ <code>my_string</code>의 길이 ≤ 100</li> | ||
<li>1 ≤ <code>is_prefix</code>의 길이 ≤ 100</li> | ||
<li><code>my_string</code>과 <code>is_prefix</code>는 영소문자로만 이루어져 있습니다.</li> | ||
</ul> | ||
|
||
<hr> | ||
|
||
<h5>입출력 예</h5> | ||
<table class="table"> | ||
<thead><tr> | ||
<th>my_string</th> | ||
<th>is_prefix</th> | ||
<th>result</th> | ||
</tr> | ||
</thead> | ||
<tbody><tr> | ||
<td>"banana"</td> | ||
<td>"ban"</td> | ||
<td>1</td> | ||
</tr> | ||
<tr> | ||
<td>"banana"</td> | ||
<td>"nan"</td> | ||
<td>0</td> | ||
</tr> | ||
<tr> | ||
<td>"banana"</td> | ||
<td>"abcd"</td> | ||
<td>0</td> | ||
</tr> | ||
<tr> | ||
<td>"banana"</td> | ||
<td>"bananan"</td> | ||
<td>0</td> | ||
</tr> | ||
</tbody> | ||
</table> | ||
<hr> | ||
|
||
<h5>입출력 예 설명</h5> | ||
|
||
<p>입출력 예 #1</p> | ||
|
||
<ul> | ||
<li>예제 1번에서 <code>is_prefix</code>가 <code>my_string</code>의 접두사이기 때문에 1을 return 합니다.</li> | ||
</ul> | ||
|
||
<p>입출력 예 #2</p> | ||
|
||
<ul> | ||
<li>예제 2번에서 <code>is_prefix</code>가 <code>my_string</code>의 접두사가 아니기 때문에 0을 return 합니다.</li> | ||
</ul> | ||
|
||
<p>입출력 예 #3</p> | ||
|
||
<ul> | ||
<li>예제 3번에서 <code>is_prefix</code>가 <code>my_string</code>의 접두사가 아니기 때문에 0을 return 합니다.</li> | ||
</ul> | ||
|
||
<p>입출력 예 #4</p> | ||
|
||
<ul> | ||
<li>예제 4번에서 <code>is_prefix</code>가 <code>my_string</code>의 접두사가 아니기 때문에 0을 return 합니다.</li> | ||
</ul> | ||
|
||
|
||
> 출처: 프로그래머스 코딩 테스트 연습, https://school.programmers.co.kr/learn/challenges |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
def solution(my_string, is_prefix): | ||
lg = len(is_prefix) | ||
if my_string[:lg] == is_prefix: | ||
return 1 | ||
else: | ||
return 0 |