백준 문제 링크
부분 문자열
- s, t를 받아주고, s를 리스트로 바꿔준다.
- now = s[0]로 지정하고,
반복문을 돌며 t를 살펴보는데,
- s의 길이가 1 이상일 때,
- now == i 라면,
- del s[0] 해준다.
- 마지막으로 s에 아무것도 없다면 Yes,
s에 원소가 있다면 No를 출력하면 끝!
while True:
try:
s, t = input().split()
s = list(s)
now = s[0]
for i in t:
if len(s) >= 1:
if s[0] == i:
del s[0]
if len(s) == 0:
print('Yes')
else:
print('No')
except:
break