#40 백준[10809] 알파벳 찾기
https://www.acmicpc.net/problem/10809
#Solution
alphabet = "abcdefghijklmnopqrstuvwxyz"
word_list = []
word_num = []
word = str(input())
for i in word:
word_list.append(i)
for character in alphabet:
for i in range(len(word_list)):
if character == word_list[i]:
word_num.append(i)
break
elif i < len(word_list)-1: continue
else:
word_num.append(-1)
for i in word_num:
print(i,end=" ")
'Programming [Python] > 백준 알고리즘 솔루션' 카테고리의 다른 글
#42 백준 파이썬 [1157] 단어 공부 (0) | 2019.02.27 |
---|---|
#41 백준 파이썬 [2675] 문자열 반복 (0) | 2019.02.26 |
#39 백준 파이썬 [11654] 아스키 코드 (0) | 2019.02.25 |
#38 백준 파이썬 [10039] 평균 점수 (0) | 2019.02.25 |
#37 백준 파이썬 [2920] 음계 (0) | 2019.02.23 |