Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- 백준
- web
- 따라하며 배우는 C언어
- BFS
- C
- 생활코딩
- sorting
- Algorithm
- 따배씨
- dfs
- graph
- server
- C언어
- 따라하면서 배우는 C언어
- BOJ
- BASIC
- udemy
- Cleancode
- Python
- 인프런
- programmers
- String
- Math
- 종만북
- Algospot
- DP
- 정수론
- JavaScript
- greedy
- php
Archives
- Today
- Total
몽상실현개발주의
[BOJ] 10808 / 알파벳 개수 / Python 파이썬 본문
[BOJ] 10808 / 알파벳 개수 / Python 파이썬
https://www.acmicpc.net/problem/10808
제목
Dictionary 를 활용하여 각 단어의 개수를 카운트 해 주었다.
alphaDic = {'a':0, 'b':0, 'c':0, 'd':0, 'e':0,
'f':0, 'g':0, 'h':0, 'i':0, 'j':0,
'k':0, 'l':0, 'm':0, 'n':0, 'o':0,
'p':0, 'q':0, 'r':0, 's':0, 't':0,
'u':0, 'v':0, 'w':0, 'x':0, 'y':0, 'z':0
}
string = input()
for s in string:
alphaDic[s] += 1
for n in alphaDic.values():
print(n)
'Algorithm PS > BOJ' 카테고리의 다른 글
[BOJ] 10820 / 문자열 분석 / Python 파이썬 (0) | 2021.05.26 |
---|---|
[BOJ] 10809 / 알파벳 찾기 / Python 파이썬 (0) | 2021.05.25 |
[BOJ] 2743 / 단어 길이 재기 / Python 파이썬 (0) | 2021.05.25 |
[BOJ] 10799 / 쇠막대기 / Python 파이썬 (0) | 2021.05.24 |
[BOJ] 9012 / 괄호 / Python 파이썬 (0) | 2021.05.24 |
Comments