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 C. Favourite footballer
- Contest
- Brain booster - 1
- Language
- Python 3 (Python 3.12.3)
- Submit At
- 2023-12-31 16:06:45
- Judged At
- 2024-11-11 03:45:18
- Judged By
- Score
- 100
- Total Time
- 16ms
- Peak Memory
- 3.141 MiB