지나가던 개발자

[Python] 백준 11008번(복붙의 달인) 문제 풀이 본문

PS/Python

[Python] 백준 11008번(복붙의 달인) 문제 풀이

KwonYongHyeon 2022. 11. 6. 20:00

 

for i in range(int(input())):
    s, p = input().split()
    print(len(s.replace(p, "아")))
Comments