From 3129c998cd7fdf56b0062b5d196408437ae87420 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=EA=B9=80=EB=B3=B4=ED=98=84?=
<157342647+boyamie@users.noreply.github.com>
Date: Wed, 12 Jun 2024 12:57:11 +0900
Subject: [PATCH] =?UTF-8?q?[level=200]=20Title:=20=EC=A0=91=EB=AF=B8?=
=?UTF-8?q?=EC=82=AC=EC=9D=B8=EC=A7=80=20=ED=99=95=EC=9D=B8=ED=95=98?=
=?UTF-8?q?=EA=B8=B0,=20Time:=200.00=20ms,=20Memory:=2010.3=20MB=20-Baekjo?=
=?UTF-8?q?onHub?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../README.md" | 97 +++++++++++++++++++
...25\354\235\270\355\225\230\352\270\260.py" | 6 ++
2 files changed, 103 insertions(+)
create mode 100644 "\355\224\204\353\241\234\352\267\270\353\236\230\353\250\270\354\212\244/0/181908.\342\200\205\354\240\221\353\257\270\354\202\254\354\235\270\354\247\200\342\200\205\355\231\225\354\235\270\355\225\230\352\270\260/README.md"
create mode 100644 "\355\224\204\353\241\234\352\267\270\353\236\230\353\250\270\354\212\244/0/181908.\342\200\205\354\240\221\353\257\270\354\202\254\354\235\270\354\247\200\342\200\205\355\231\225\354\235\270\355\225\230\352\270\260/\354\240\221\353\257\270\354\202\254\354\235\270\354\247\200\342\200\205\355\231\225\354\235\270\355\225\230\352\270\260.py"
diff --git "a/\355\224\204\353\241\234\352\267\270\353\236\230\353\250\270\354\212\244/0/181908.\342\200\205\354\240\221\353\257\270\354\202\254\354\235\270\354\247\200\342\200\205\355\231\225\354\235\270\355\225\230\352\270\260/README.md" "b/\355\224\204\353\241\234\352\267\270\353\236\230\353\250\270\354\212\244/0/181908.\342\200\205\354\240\221\353\257\270\354\202\254\354\235\270\354\247\200\342\200\205\355\231\225\354\235\270\355\225\230\352\270\260/README.md"
new file mode 100644
index 0000000..9c02bc2
--- /dev/null
+++ "b/\355\224\204\353\241\234\352\267\270\353\236\230\353\250\270\354\212\244/0/181908.\342\200\205\354\240\221\353\257\270\354\202\254\354\235\270\354\247\200\342\200\205\355\231\225\354\235\270\355\225\230\352\270\260/README.md"
@@ -0,0 +1,97 @@
+# [level 0] 접미사인지 확인하기 - 181908
+
+[문제 링크](https://school.programmers.co.kr/learn/courses/30/lessons/181908)
+
+### 성능 요약
+
+메모리: 10.3 MB, 시간: 0.00 ms
+
+### 구분
+
+코딩테스트 연습 > 코딩 기초 트레이닝
+
+### 채점결과
+
+정확성: 100.0
합계: 100.0 / 100.0
+
+### 제출 일자
+
+2024년 06월 12일 12:57:09
+
+### 문제 설명
+
+
어떤 문자열에 대해서 접미사는 특정 인덱스부터 시작하는 문자열을 의미합니다. 예를 들어, "banana"의 모든 접미사는 "banana", "anana", "nana", "ana", "na", "a"입니다.
+문자열 my_string
과 is_suffix
가 주어질 때, is_suffix
가 my_string
의 접미사라면 1을, 아니면 0을 return 하는 solution 함수를 작성해 주세요.
my_string
의 길이 ≤ 100is_suffix
의 길이 ≤ 100my_string
과 is_suffix
는 영소문자로만 이루어져 있습니다.my_string | +is_suffix | +result | +
---|---|---|
"banana" | +"ana" | +1 | +
"banana" | +"nan" | +0 | +
"banana" | +"wxyz" | +0 | +
"banana" | +"abanana" | +0 | +
입출력 예 #1
+ +is_suffix
가 my_string
의 접미사이기 때문에 1을 return 합니다.입출력 예 #2
+ +is_suffix
가 my_string
의 접미사가 아니기 때문에 0을 return 합니다.입출력 예 #3
+ +is_suffix
가 my_string
의 접미사가 아니기 때문에 0을 return 합니다.입출력 예 #4
+ +is_suffix
가 my_string
의 접미사가 아니기 때문에 0을 return 합니다.