[Python] 백준 10808번 : 알파벳 개수
2025. 3. 25. 18:16
https://www.acmicpc.net/problem/10808
def solution(input_str):
alphabet_list = [0] * 26
for char in input_str:
index = ord(char) - ord('a')
alphabet_list[index] += 1
for i in range(len(alphabet_list)):
print(alphabet_list[i], end=' ')
input_str = input()
solution(input_str)
'코딩테스트 > BOJ' 카테고리의 다른 글
[Python] 백준 10820번 : 문자열 분석 (0) | 2025.04.01 |
---|---|
[Python] 백준 1032번 : 명령 프롬프트 (0) | 2025.03.31 |
[Python] 백준 1439번 : 뒤집기 (0) | 2025.03.25 |
[Python] 백준 1929번 : 소수 구하기 (0) | 2025.03.25 |
[Python] 백준 10798번 : 세로읽기 (0) | 2025.03.07 |