[백준] #5704 팬그램 python
2023. 3. 3. 06:00
https://www.acmicpc.net/problem/5704
📕 설명 📕
python의 Counter 라이브러리를 사용해서 쉽게 풀이하였다.
' '의 문자열은 제외해주었다.
🧑🏻💻 나의 풀이 🧑🏻💻
from collections import Counter
while True:
S = Counter(input())
if S['*'] == 1:
break
if S[' '] >= 1:
del S[' ']
if len(S) >= 26:
print("Y")
else:
print("N")
'Programming > Algorithm' 카테고리의 다른 글
[백준] #11006 남욱이의 닭장 python (0) | 2023.03.05 |
---|---|
[백준] #6322 직각 삼각형의 두 변 python (0) | 2023.03.04 |
[백준] #5613 계산기 프로그램 python (0) | 2023.03.02 |
[백준] #4880 다음수 python (0) | 2023.03.01 |
[백준] #4504 배수 찾기 python (0) | 2023.02.28 |