-Code
n = int(input())
s = set(input())
words = "ABCED"
cnt = 0
for w in s:
if w in words:
cnt += 1
print("Yes" if cnt >= 3 else "No")
'Beakjoon&프로그래머스 > 파이썬' 카테고리의 다른 글
[백준/파이썬] 9913번 Max (0) | 2023.06.27 |
---|---|
[백준/파이썬] 16032번 Income Inequality (0) | 2023.06.26 |
[백준/파이썬] 22016번 巻物 (Scroll) (0) | 2023.06.24 |
[백준/파이썬] 17577번 Scores of Final Examination (0) | 2023.06.23 |
[백준/파이썬] 28224번 Final Price (0) | 2023.06.22 |