-Code
n = int(input())
s = input()
res = []
for w in "uospc":
res.append(s.count(w))
print(min(res))
'Beakjoon&프로그래머스 > C언어' 카테고리의 다른 글
[백준/파이썬]2439번 별 찍기 - 2 (0) | 2021.03.01 |
---|---|
[백준/파이썬]2438번 별 찍기 - 1 (0) | 2021.02.28 |
[백준/c언어]1085번 직사각형에서 탈출 (0) | 2021.02.24 |
[백준/c언어]17388번 와글와글 숭고한 (0) | 2021.02.22 |
[백준/c언어]8718번 시험 성적 (0) | 2021.02.07 |