Accepted
Code
def jjk(S, N):
i = 0
j = 0
while i < len(S) and j < len(N):
if S[i] == N[j]:
i += 1
j += 1
else:
i += 1
return j == len(N)
T = int(input())
if 1<=T<=100:
for i in range(T):
S = input()
N = input()
result = jjk(S, N)
if result:
print("YES")
else:
print("NO")
Information
- Submit By
- Type
- Submission
- Problem
- P1020 Favourite footballer
- Language
- Python 3 (Python 3.12.3)
- Submit At
- 2024-01-09 14:23:45
- Judged At
- 2024-11-11 03:43:35
- Judged By
- Score
- 100
- Total Time
- 17ms
- Peak Memory
- 3.121 MiB