본문 바로가기
Beakjoon&프로그래머스/파이썬

[백준/파이썬] 32342번 와우와 쿼리

by 현장 2024. 9. 24.

-Code

for _ in range(int(input())):
    s = input()
    res = 0

    for i in range(len(s) - 2):
        if s[i:i+3] == "WOW":
            res += 1

    print(res)