DHistory
[Baekjoon] Greedy - 6550 부분 문자열 본문
문제
풀이
UCPC와 동일한 문제
"""
문자열 s와 t
s가 t의 부분 문자열인지 판단
부분문자열: t에서 몇 개의 문자를 제거하고 이를 순서를 바꾸지 않고 합쳤을 경우 s가 되는 경우
"""
import sys
def solution(s, t):
index = 0
for alpha in t:
if s[index] == alpha:
index += 1
if index == len(s):
return 'Yes'
return 'No'
for line in sys.stdin:
s, t = line.rstrip().split()
print(solution(s, t))
채점 결과
'Computer Science > Algorithm' 카테고리의 다른 글
[Baekjoon] Greedy - 11256 사탕 (0) | 2023.08.14 |
---|---|
[Baekjoon] Greedy - 1817 짐 챙기는 숌 (0) | 2023.08.14 |
[Baekjoon] Greedy - 3135 라디오 (0) | 2023.08.14 |
[Baekjoon] Greedy - 2937 이장님 초대 (0) | 2023.08.14 |
[Baekjoon] Greedy - 2828 사과 담기 게임 (0) | 2023.08.14 |