Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 금융문자분석경진대회
- Docker
- 데이콘
- SW Expert Academy
- AI 경진대회
- 맥북
- 캐치카페
- Real or Not? NLP with Disaster Tweets
- ubuntu
- leetcode
- 더현대서울 맛집
- 코로나19
- 백준
- hackerrank
- Kaggle
- 우분투
- PYTHON
- programmers
- 편스토랑 우승상품
- dacon
- Baekjoon
- 파이썬
- ChatGPT
- gs25
- github
- 자연어처리
- 프로그래머스
- 편스토랑
- 프로그래머스 파이썬
- Git
Archives
- Today
- Total
솜씨좋은장씨
[BaekJoon] 10809번 : 알파벳 찾기 (Python) 본문
728x90
반응형
1일 1문제 151일차!
오늘의 문제는 알파벳 찾기 입니다.
Solution
word_s = input()
word_count_dic = {'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}
index = ['a','b','c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z']
pre_words = []
for i in range(len(word_s)):
if i == 0:
pre_words.append(word_s[i])
word_count_dic[word_s[i]] = i
else:
if word_s[i] not in pre_words:
word_count_dic[word_s[i]] = i
pre_words.append(word_s[i])
for idx in index:
if word_count_dic[idx] == 0 and idx not in pre_words:
word_count_dic[idx] = -1
for idx in index:
print(word_count_dic[idx], end=" ")
'Programming > 코딩 1일 1문제' 카테고리의 다른 글
[BaekJoon] 9095번 : 1, 2, 3 더하기 (Python) (0) | 2020.07.08 |
---|---|
[BaekJoon] 10808번 : 알파벳 개수 (Python) (0) | 2020.07.07 |
[BaekJoon] 1373번 : 2진수 8진수 (Python) (0) | 2020.07.06 |
[BaekJoon] 1934번 : 최소공배수 (Python) (0) | 2020.07.06 |
[BaekJoon] 2609번 : 최대공약수와 최소공배수 (Python) (0) | 2020.07.06 |
Comments