본문 바로가기
Beakjoon&프로그래머스/C언어

[백준/파이썬] 30822번 UOSPC 세기

by 현장 2023. 12. 12.

-Code

n = int(input())
s = input()
res = []

for w in "uospc":
    res.append(s.count(w))

print(min(res))