1
2
3
4
5
6
7
|
n=int(input())
s=input().lower()
ans=[]
for i in s:
if i not in ans : ans.append(i)
if 26 == len(ans) : print("YES")
else : print("NO")
|
cs |
반응형
'python-algorithm' 카테고리의 다른 글
codeforces 155A - I_love_\%username\% (0) | 2022.04.29 |
---|---|
codeforces 977A - Wrong Subtraction (0) | 2022.04.29 |
codeforces 1328A - Divisibility Problem (0) | 2022.04.29 |
codeforces 339A - Helpful Maths (0) | 2022.04.29 |
Codeforces 734A - Anton and Danik (0) | 2022.04.29 |
댓글